-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.22 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "mandarin_numbers",
"version": "1.0.0",
"description": "A simple game for learning numbers",
"main": "./src/client/app/Index.js",
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"test": "./node_modules/.bin/jest",
"watch:test": "./node_modules/.bin/jest --watch",
"hot": "./node_modules/.bin/webpack-dev-server --content-base src/client/public; open http://localhost:8080/webpack-dev-server/",
"build": "./node_modules/.bin/webpack -d && cp -R semantic/ ./src/client/public/",
"copy-css": "cp -R semantic/ ./src/client/public/",
"start": "node_modules/.bin/http-server ./src/client/public/"
},
"author": "Andrew Duberstein (ajduberstein@gmail.com)",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.21.0",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"better-console": "^0.2.4",
"del": "^2.2.2",
"enzyme": "^2.7.0",
"extend": "^3.0.0",
"fbjs": "^0.8.8",
"fbjs-scripts": "^0.7.1",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.1",
"gulp-chmod": "^2.0.0",
"gulp-clean-css": "^2.2.1",
"gulp-clone": "^1.0.0",
"gulp-concat": "^2.6.1",
"gulp-concat-css": "^2.3.0",
"gulp-copy": "^1.0.0",
"gulp-dedupe": "0.0.2",
"gulp-flatten": "^0.3.1",
"gulp-header": "^1.8.8",
"gulp-help": "^1.6.1",
"gulp-if": "^2.0.2",
"gulp-less": "^3.3.0",
"gulp-notify": "^2.2.0",
"gulp-plumber": "^1.1.0",
"gulp-print": "^2.0.1",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-rtlcss": "^1.0.0",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.7",
"gulp-watch": "^4.3.11",
"invariant": "^2.2.2",
"jest": "^18.1.0",
"map-stream": "0.0.6",
"object-assign": "^4.1.0",
"react-addons-test-utils": "^15.4.1",
"react-test-renderer": "^15.4.1",
"redux-logger": "^2.7.4",
"redux-mock-store": "^1.2.1",
"require-dot-file": "^0.4.0",
"run-sequence": "^1.2.2",
"sinon": "^1.17.7",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2",
"yamljs": "^0.2.8"
},
"dependencies": {
"babel-core": "^6.20.0",
"babel-loader": "^6.2.9",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"fast-levenshtein": "^2.0.5",
"gulp": "^3.9.1",
"howler": "^2.0.2",
"http-server": "^0.9.0",
"immutable": "^3.8.1",
"react": "^15.4.1",
"react-addons-shallow-compare": "^15.4.1",
"react-d3": "^0.4.0",
"react-dom": "^15.4.1",
"react-redux": "^4.4.6",
"react-vis": "^0.7.1",
"redux": "^3.6.0",
"regenerator": "^0.9.5",
"semantic-ui": "^2.2.6",
"semantic-ui-css": "^2.2.4",
"semantic-ui-react": "^0.62.1"
},
"jest": {
"testRegex": "src/client/app/.*-spec.js$",
"collectCoverage": true,
"collectCoverageFrom": [
"**/src/client/app/**",
"!**/src/client/app/.*-spec.{js,jsx}",
"!**/src/client/app/__snapshots__/**",
"!**/src/client/app/*.js.snap",
"!**/node_modules/**",
"!**/vendor/**",
"!**/semantic/**",
"!**/public/**"
]
}
}