-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.29 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
{
"name": "super-gobang",
"version": "0.2.0",
"description": "Gobang game. It's fun!",
"main": "./src/index.js",
"author": "Chuck Wu",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/d9767192/super-gobang.git"
},
"browserslist": [
"Last 4 versions"
],
"scripts": {
"quick": "plop --plopfile build/scaffold/start.js",
"start": "cross-env NODE_ENV=development node build/scripts/start --sourcemaps --indir assets",
"test": "npm run test:lint && npm run test:unit",
"test:unit": "cross-env NODE_ENV=test jest --config ./build/configs/jest.config.js",
"test:unit:watch": "npm run test:unit -- --watch",
"test:lint": "node build/scripts/eslint",
"test:lint:fix": "npm run test:lint -- --fixlint",
"test:lint:report": "npm run test:lint -- --outputlint",
"test:coverage": "npm run test:unit -- --coverage",
"build": "npm run build:page && npm run build:es",
"build:page": "cross-env NODE_ENV=production node build/scripts/compile --indir assets --outdir ./demo",
"build:es": "cross-env BABEL_ENV=es babel ./src --out-dir ./dist",
"release": "np --no-publish --any-branch"
},
"dependencies": {
"lodash": "^4.17.19",
"prop-types": "^15.5.10",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-hot-loader": "^3.1.3",
"react-loadable": "^5.3.1",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "^4.0.8"
},
"devDependencies": {
"autoprefixer": "^7.2.5",
"babel-cli": "^6.26.0",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.4.0",
"babel-preset-react": "^6.24.1",
"canvas-prebuilt": "^1.6.5-prerelease.1",
"chalk": "^1.1.3",
"compression": "^1.6.2",
"cross-env": "^5.0.0",
"css-loader": "^0.28.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-15": "^1.0.5",
"enzyme-to-json": "^3.3.0",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-import-resolver-webpack": "^0.8.4",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.6.2",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.5.1",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^3.0.2",
"figures": "^2.0.0",
"file-loader": "^1.1.6",
"fs-extra": "^3.0.1",
"html-webpack-plugin": "^2.24.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.1.4",
"less": "^2.7.2",
"less-loader": "^4.0.4",
"lodash.isempty": "^4.4.0",
"node-sass": "^4.7.2",
"np": "^2.18.3",
"optimist": "^0.6.1",
"plop": "^1.9.1",
"postcss-loader": "^2.0.10",
"raw-loader": "^0.5.1",
"react-addons-test-utils": "^15.5.1",
"react-test-renderer": "^15.5.4",
"redux-mock-store": "^1.2.3",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.5",
"style-loader": "^0.17.0",
"url-loader": "^0.5.8",
"webpack": "^3.10.0",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.2",
"yargs": "^8.0.1"
}
}