-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.25 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
{
"name": "Cribbage",
"version": "1.0.0",
"description": "Cribbage",
"main": "index.js",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "7.2.3",
"babel-loader": "^6.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.24.1",
"chai": "^4.0.1",
"classnames": "^2.2.6",
"commander": "^2.16.0",
"css-loader": "0.23.1",
"eslint": "^5.0.1",
"eslint-loader": "^1.1.0",
"eslint-plugin-react": "3.6.3",
"extract-text-webpack-plugin": "0.9.1",
"glob": "^7.1.2",
"gulp": "^4.0.0",
"gulp-autoprefixer": "^3.0.2",
"gulp-banner": "^0.1.3",
"gulp-rename": "^1.3.0",
"gulp-sass": "^2.0.4",
"gulp-util": "^3.0.6",
"lodash": "^4.17.10",
"mocha": "^5.2.0",
"prop-types": "^15.6.2",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-redux": "^5.0.5",
"redux": "^3.7.1",
"redux-thunk": "^2.3.0",
"style-loader": "0.13",
"webpack": "1.12.9"
},
"scripts": {
"build": "npm install && npm run build-client",
"build-client": "gulp",
"distclean": "rm -rf node_modules",
"test": "NODE_ENV=test test/runner.js",
"watch": "gulp watch"
}
}