-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 859 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 859 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
29
30
31
{
"name": "Frida-backend",
"main": "server.js",
"description": "Test apps",
"version": "0.1.1",
"private": false,
"engines": {
"node": "6.*"
},
"scripts": {
"build": "rimraf dist/ && babel ./ --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log --copy-files",
"start": "node dist/server.js"
},
"dependencies": {
"body-parser": "1.17.2",
"express": "4.20.0",
"http-status": "^0.2.0",
"moment": "^2.22.2",
"query-string": "^6.1.0",
"request": "2.87.0",
"rimraf": "^2.6.3",
"express-winston": "2.1.2",
"winston": "2.3.0",
"app-root-path": "^2.1.0",
"morgan": "1.10.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1"
}
}