-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.7 KB
/
package.json
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "example-node-app",
"version": "1.1.0",
"description": "Skeleton for a node app",
"main": "index.js",
"engines": {
"node": "6.10.2",
"npm": "3.10.10"
},
"scripts": {
"test": "JASMINE_CONFIG_PATH=src/test/app/jasmine.json jasmine",
"test-client": "karma start",
"start": "NODE_ENV=production node --use-strict dist/server.js",
"app": "node --use-strict src/app/app.js",
"watch": "nodemon src/app/app.js --ignore 'src/public/**/*'",
"build:dist": "grunt dist && npm run dist-install",
"dist-install": "cd dist && npm install --production",
"dist": "npm run build:dist && npm run start",
"heroku-postbuild": "npm run build:dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/web-bert/example-node-app.git"
},
"keywords": [
"node",
"skeleton",
"app"
],
"author": "Graham Veal",
"license": "ISC",
"bugs": {
"url": "https://github.com/web-bert/example-node-app/issues"
},
"homepage": "https://github.com/web-bert/example-node-app#readme",
"dependencies": {
"body-parser": "*",
"express": "*",
"morgan": "*",
"serve-static": "*",
"nunjucks": "*"
},
"devDependencies": {
"nodemon": "*",
"grunt": "*",
"load-grunt-tasks": "*",
"grunt-contrib-clean": "*",
"grunt-contrib-compress": "*",
"grunt-contrib-concat": "*",
"grunt-contrib-copy": "*",
"grunt-contrib-cssmin": "*",
"grunt-contrib-uglify": "*",
"grunt-filerev": "*",
"grunt-mkdir": "*",
"grunt-usemin": "*",
"jasmine": "*",
"jasmine-core": "*",
"karma": "*",
"karma-chrome-launcher": "*",
"karma-jasmine": "*"
},
"optionalDependencies": {
"fsevents": "*"
}
}