-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
executable file
·75 lines (75 loc) · 2.46 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
66
67
68
69
70
71
72
73
74
75
{
"name": "nostyle",
"version": "1.1.1",
"description": "No style",
"main": "index.js",
"engines": {
"node": "8.9.3",
"npm": "5.5.1"
},
"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": "run-p watch:*",
"watch:node": "nodemon src/app/app.js --ignore 'src/public/**/*'",
"build:dist": "npm run sass:prod && 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",
"watch:sass": "npm run sass:dev && node-sass src/public/sass/main.scss src/public/css/main.css --source-map src/public/css/main.css.map --source-map-contents --include-path ./src/public/sass/ --include-path ./src/components/ -w -r",
"sass:dev": "node-sass src/public/sass/main.scss src/public/css/main.css --source-map src/public/css/main.css.map --source-map-contents --include-path ./src/public/sass/ --include-path ./src/components/",
"sass:prod": "node-sass src/public/sass/main.scss src/public/css/main.css --include-path ./src/public/sass/ --include-path ./src/components/ -x --output-style compressed"
},
"repository": {
"type": "git",
"url": "git+https://github.com/web-bert/example-node-app.git"
},
"keywords": [
"node",
"skeleton",
"app"
],
"author": "Adam Silver",
"license": "ISC",
"bugs": {
"url": "https://github.com/adamsilver/nostyle/issues"
},
"homepage": "https://github.com/adamsilver/nostyle#readme",
"dependencies": {
"body-parser": "*",
"express": "*",
"faker": "^4.1.0",
"morgan": "*",
"multer": "*",
"nunjucks": "*",
"sass-mq": "^5.0.0",
"serve-static": "*"
},
"devDependencies": {
"grunt": "*",
"grunt-cli": "*",
"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": "*",
"load-grunt-tasks": "*",
"node-sass": "^4.12.0",
"nodemon": "*",
"npm-run-all": "*"
},
"optionalDependencies": {
"fsevents": "*"
}
}