-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.12 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.12 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
{
"name": "dnd_website",
"version": "1.0.0",
"description": "A website for searching 5e dnd spells.",
"main": "app.js",
"scripts": {
"build": "sudo babel ./src --out-dir ./build --ignore node_modules && sudo webpack",
"start": "node build/app.js",
"buildstart": "npm run build && npm run start"
},
"author": "Fraser Kearns",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.20.0",
"body-parser": "^1.15.2",
"express": "^4.14.0",
"fuse.js": "^2.6.1",
"radium": "^0.18.1",
"react": "^15.4.2",
"react-bootstrap": "^0.30.7",
"react-dom": "^15.4.2",
"react-helmet": "^4.0.0",
"react-redux": "^5.0.2",
"react-router": "^3.0.0",
"redux": "^3.6.0",
"redux-immutable-state-invariant": "^1.2.4",
"redux-thunk": "^2.2.0",
"webpack": "^4.8.2"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-root-import": "^5.0.0",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"json-loader": "^0.5.4",
"webpack-cli": "^2.1.3"
}
}