-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 732 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 732 Bytes
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
{
"name": "server",
"version": "1.0.0",
"main": "index.js",
"author": "ric lavers",
"license": "MIT",
"scripts": {
"start": "APP_ENV=development nodemon ./src/index.js --exec babel-node -e js",
"build": "rm -rf build && babel ./src -d build --source-maps --copy-files"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.2",
"jwt-simple": "^0.5.1",
"mongoose": "^5.0.13",
"mongoose-data-seed": "^1.0.4",
"nodemon": "^1.12.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"flow-bin": "^0.73.0"
}
}