-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·46 lines (46 loc) · 1.08 KB
/
package.json
File metadata and controls
executable file
·46 lines (46 loc) · 1.08 KB
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
{
"name": "Boggle",
"version": "1.0.0",
"description": "Boggle game built using React",
"main": "webpack.config.js",
"scripts": {
"start": "nodemon server/index.js",
"heroku-postbuild": "webpack -d",
"build": "webpack -d --watch",
"test": "jest"
},
"devDependencies": {
"babel-jest": "^21.2.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.13.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"jest": "^21.2.1",
"react-test-renderer": "^16.2.0"
},
"dependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"body-parser": "^1.17.2",
"express": "^4.15.0",
"file-loader": "^1.1.5",
"jquery": "^3.1.1",
"mongoose": "^4.13.7",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"url-loader": "^0.6.2",
"webpack": "^2.2.1"
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"keywords": [],
"author": "Jerry Xia",
"license": "ISC"
}