-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.01 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
65
66
67
68
69
70
71
{
"name": "aaron",
"version": "2.0.0",
"description": "Aaron",
"main": "server.js",
"dependencies": {
"angular": "^1.5.3",
"body-parser": "^1.15.0",
"browserify": "^12.0.2",
"cookies": "^0.5.1",
"debug": "^2.2.0",
"exorcist": "^0.4.0",
"express": "^4.13.4",
"js-cookie": "^2.1.0",
"lodash": "^3.10.1",
"moment": "^2.12.0",
"mysql": "^2.10.2",
"pug": "^2.0.0-alpha3",
"serve-static": "^1.10.2",
"watch": "^0.17.1",
"watchify": "^3.7.0"
},
"scripts": {
"test": "echo \"Achtung!\"",
"test:jshint": "jshint source/js/*.js",
"prebuild": "npm run clean -s",
"clean": "rm -r dist/*",
"build": "npm run build:js && npm run build:css && npm run build:fonts && npm run build:images",
"build:js": "node build-js.js",
"build:css": "sass source/scss/main.scss dist/style.css",
"build:fonts": "rm -r -f dist/fonts/ && mkdir -p dist/fonts/ && cp -r source/fonts/* dist/fonts/",
"build:images": "rm -r -f dist/img/ && mkdir -p dist/img/ && cp -r source/img/* dist/img/",
"build:watch": "parallelshell 'npm run watch:js' 'npm run watch:css' 'npm run watch:html' 'npm run watch:fonts' 'npm run watch:images' 'npm run livereload'",
"watch:js": "npm run build:js -- -w",
"watch:css": "sass --watch source/scss/main.scss:dist/style.css",
"watch:fonts": "watch 'npm run build:fonts' source/fonts/",
"watch:images": "watch 'npm run build:images' source/img/"
},
"keywords": [
"aaron",
"application",
"group",
"management"
],
"author": "Emil Hemdal",
"license": "AGPL-3.0",
"private": true,
"jshintConfig": {
"node": true,
"bitwise": true,
"curly": true,
"eqeqeq": true,
"latedef": "nofunc",
"noarg": true,
"nonbsp": true,
"nonew": true,
"shadow": false,
"singleGroups": true,
"undef": true,
"unused": true,
"globalstrict": true
},
"browser": {
"jquery": "./public/js/vendor/jquery.min.js"
},
"browserify-shim": {
"jquery": {
"exports": "$"
}
}
}