-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.18 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "bspb-members-web",
"version": "0.4.5",
"description": "Management system for BSPB members",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/BspbOrg/members-web.git"
},
"author": "Geno Roupsky <[email protected]> (https://github.com/groupsky)",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/BspbOrg/members-web/issues"
},
"homepage": "https://github.com/BspbOrg/members-web#readme",
"browserify": {
"transform": [
"stringify",
"browserify-shim",
"bulkify",
"envify",
"browserify-ngannotate"
]
},
"standard": {
"ignore": [
"**/test/",
"/public/"
]
},
"browserify-shim": {},
"devDependencies": {
"budo": "^11.3.2",
"standard": "latest",
"watch": "^1.0.2",
"watchify": "^3.11.0"
},
"dependencies": {
"@lordfriend/nya-bootstrap-select": "^2.5.1",
"@uirouter/angularjs": "^1.0.20",
"angular": "^1.7.4",
"angular-animate": "^1.7.4",
"angular-bootstrap-lightbox": "^0.12.0",
"angular-cookies": "^1.7.4",
"angular-file-upload": "^2.5.0",
"angular-filter": "^0.5.17",
"angular-i18n": "^1.6.9",
"angular-loading-bar": "^0.9.0",
"angular-mocks": "^1.7.4",
"angular-resource": "^1.7.4",
"angular-sanitize": "^1.7.4",
"angular-translate": "^2.18.1",
"angular-ui-bootstrap": "^2.5.6",
"angulartics": "^1.6.0",
"angulartics-google-analytics": "^0.5.0",
"autoprefixer": "^9.1.5",
"bootstrap": "3.3.7",
"browserify": "^16.2.3",
"browserify-ngannotate": "^2.0.0",
"browserify-shim": "^3.8.14",
"bulk-require": "^1.0.1",
"bulkify": "^1.4.2",
"clean-css": "^4.2.1",
"cross-env": "^5.2.0",
"envify": "^4.1.0",
"font-awesome": "^4.7.0",
"form-data": "^2.3.2",
"less": "^3.8.1",
"less-plugin-clean-css": "^1.5.1",
"lodash.mapvalues": "^4.6.0",
"minifyify": "^7.3.5",
"moment": "^2.22.2",
"ng-infinite-scroll": "^1.3.0",
"ng-toast": "^2.0.0",
"ngstorage": "^0.3.11",
"nya-bootstrap-select": "^2.0.11",
"query-string": "5.1.1",
"raven-js": "^3.27.0",
"startbootstrap-sb-admin-2": "^3.3.7",
"stringify": "^5.2.0",
"uglify-js": "^3.4.9",
"ui-select": "^0.19.8"
},
"scripts": {
"build:js:debug": "browserify src/scripts/app.js -d -o public/js/scripts.js",
"build:js": "cross-env NODE_ENV=${ENV:=production} browserify -g envify --debug -e src/scripts/app.js | uglifyjs -c warnings=false -m > public/js/scripts.js",
"build:js:watch": "watchify src/scripts/app.js -d -o ./public/js/scripts.js -v",
"build:css": "lessc --clean-css='--s1 --advanced' --source-map=public/css/main.css.map --source-map-include-source src/styles/main.less public/css/main.css",
"build:css:watch": "watch 'npm run build:css' src/styles",
"pretest": "standard",
"build": "npm run build:css && npm run build:js",
"dev": "budo src/scripts/app.js -d public -s js/scripts.js -l -P",
"discify": "cross-env NODE_ENV=${ENV:=production} browserify --full-paths -g envify --debug -e src/scripts/app.js | uglifyjs -c warnings=false -m | discify > public/disc.html",
"test": "echo \"Error: no test specified\""
}
}