-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 906 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
33
34
35
36
37
{
"name": "mathgame",
"version": "1.0.0",
"description": "My first game in react",
"main": "./src/index.js",
"scripts": {
"build": "NODE_ENV=production webpack --config ./webpack.prod.config.js --progress --colors",
"start": "node app.js"
},
"author": "Enrico Aquilina",
"license": "ISC",
"keywords": [
"react",
"express",
"webpack",
"es2016",
"javascript"
],
"dependencies": {
"bootstrap": "^3.3.7",
"express": "^4.14.0",
"jquery": "^3.1.0",
"react": "^15.3.2",
"react-dom": "^15.3.2"
},
"devDependencies": {
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.13.0",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.8.3",
"webpack-dev-server": "^1.16.1",
"webpack-hot-middleware": "^2.12.2"
}
}