-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.05 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
{
"name": "portfolio",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"start": "webpack -w & nodemon --watch server -e js,html server/app.js",
"dev": "webpack-dev-server --env.dev",
"build": "webpack",
"test": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cyng24/portfolio"
},
"author": "cyng24",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-es2015": "^1.3.0",
"babel-preset-stage-1": "^6.24.1",
"morgan": "^1.9.0",
"nodemon": "^1.14.11",
"webpack": "^3.10.0",
"webpack-dev-server": "3.1.11"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"body-parser": "^1.18.2",
"express": "^4.16.2",
"path": "^0.12.7",
"pg": "^6",
"pg-hstore": "^2.3.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router-dom": "^4.2.2"
}
}