-
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": "your-project-name",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "npm run prod",
"server": "babel-node ./src/bin/www",
"server:prod": "node ./dist/bin/www",
"dev": "NODE_ENV=development npm-run-all server",
"clean": "rimraf dist",
"build": "babel ./src --out-dir dist",
"prod": "NODE_ENV=production npm-run-all clean build server:prod",
"pre:steps": "node ./scripts/profile-fixer",
"conn": "node ./src/bin/connection",
"watch": "nodemon"
},
"dependencies": {
"async": "^2.6.2",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"express": "~4.16.0",
"grunt": "^1.0.4",
"grunt-cli": "^1.3.2",
"grunt-contrib-uglify": "4.0.1",
"js-yaml": "^3.13.1",
"jsforce": "^1.9.1",
"minimist": "^1.2.0",
"morgan": "~1.9.0",
"npm-run-all": "^4.1.5",
"rimraf": "^2.6.3"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"nodemon": "^1.18.9"
}
}