-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.03 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.03 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
{
"name": "prometheusconsulting-backend",
"version": "1.0.0",
"description": "Backend for the prometheus marketing site",
"main": "build/server.js",
"engines": {
"node": "^8.0.0"
},
"scripts": {
"test": "echo \"No Tests Specified\" && exit 1",
"serve": "nodemon ./src/server.js --exec babel-node -e js",
"prestart": "babel src -d build -s",
"start": "node ./build/server.js"
},
"author": "Michel Paupulaire",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.2",
"compression": "^1.7.1",
"cookie": "^0.3.1",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"express": "4.16.3",
"randomstring": "1.1.5",
"simple-oauth2": "1.6.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"dotenv": "^6.0.0",
"flow-bin": "^0.73.0",
"nodemon": "^1.17.5"
}
}