-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (62 loc) · 1.82 KB
/
package.json
File metadata and controls
64 lines (62 loc) · 1.82 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
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
{
"name": "MEAN",
"version": "0.0.1",
"description": "A basic MEAN setup",
"main": "index.js",
"scripts": {
"test": "npm test",
"clean": "rm -rf ./dist",
"copy": "cp package.json ./dist/package.json && cp app/*.js ./dist && cp -R ./app/views ./dist",
"setup": "mkdir -p ./dist/public/scripts && mkdir -p ./dist/public/styles && npm run copy",
"watch:scripts": "watchify ./app/public/scripts/app.js -o ./dist/public/scripts/app.js",
"watch:styles": "watch ./app/public/styles ./dist/public/styles",
"watch": "npm run setup && npm run watch:scripts & npm run watch:styles",
"build:scripts": "browserify ./app/public/scripts/app.js -o ./dist/public/scripts/app.js",
"build:styles": "lessc ./app/public/styles/main.less ./dist/public/styles/main.css",
"build": "npm run clean && npm run setup && npm run build:scripts && npm run build:styles",
"start": "npm run watch"
},
"browserify": {
"transform": [
"browserify-shim",
"hintify",
"uglifyify"
]
},
"browserify-shim": {
"io": "global:io"
},
"repository": {
"type": "git",
"url": "https://github.com/eliias/mean.git"
},
"keywords": [
"MEAN"
],
"author": "Hannes Moser <hannes@impossiblearts.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eliias/mean/issues"
},
"homepage": "https://github.com/eliias/mean",
"devDependencies": {
"browserify": "^9.0.3",
"browserify-shim": "^3.8.3",
"grunt": "^0.4.5",
"hintify": "^0.1.0",
"jquery": "^2.1.3",
"jshint": "^2.6.3",
"less": "^2.4.0",
"nodemon": "^1.3.7",
"uglifyify": "^3.0.1"
},
"dependencies": {
"express": "^4.12.3",
"jade": "^1.9.2",
"mocha": "^2.2.1",
"should": "^5.2.0",
"socket.io": "^1.3.5",
"morgan": "^1.5.2",
"compression": "^1.4.3"
}
}