-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.31 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
{
"name": "spent",
"version": "1.0.0",
"description": "A demo website/personal expense tracker.",
"repository": {
"type": "git",
"url": "https://github.com/mplauman/spent"
},
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node server.js --ignore public",
"test": "echo No tests yet",
"dev": "webpack -wd",
"build": "webpack --mode=production && babel . --ignore build,node_modules,webpack.config.js -d build",
"serve": "node server.js"
},
"babel": {
"presets": [
"react",
"es2015",
"stage-2"
]
},
"author": "Matt Plaumann",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"pug": "^2.0.3",
"react": "^16.4.0",
"react-bootstrap": "^0.32.1",
"react-dom": "^16.4.0",
"react-loadable": "^5.4.0",
"react-social-login": "^3.4.2",
"sha.js": "^2.4.11"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.9.1",
"nodemon": "^1.17.5",
"prop-types": "^15.6.1",
"webpack": "^4.11.0",
"webpack-cli": "^3.0.2"
}
}