-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 954 Bytes
/
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
{
"name": "schulte_demo",
"version": "1.0.0",
"description": "React JavaScript Demo for Schulte Grid",
"main": "index.js",
"directories": {
"doc": "docs"
},
"author": "Wang Yaohui <[email protected]>",
"dependencies": {
"react": "^15.4.0",
"react-dom": "^15.4.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "latest",
"babel-preset-react": "^6.24.1",
"copy-webpack-plugin": "^4.2.3",
"mocha": "^4.0.1",
"mochawesome": "^2.3.1",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
},
"scripts": {
"dev": "webpack-dev-server --progress -p --colors",
"deploy": "webpack --progress -p --colors --config webpack.production.config.js",
"test": "mocha --compilers js:babel-core/register test/ --reporter mochawesome"
}
}