-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.94 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.94 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
72
73
{
"name": "angularjs-starter",
"version": "0.3.3",
"devDependencies": {
"angular": "^1.6.2",
"angular-mocks": "^1.6.1",
"angular-ui-router": "^0.4.2",
"autoprefixer": "~6.7.6",
"babel-cli": "^6.22.2",
"babel-core": "^6.20.0",
"babel-loader": "^6.3.0",
"babel-preset-angular": "~6.0.15",
"babel-preset-es2015": "^6.22.0",
"commitizen": "^2.8.6",
"css-loader": "^0.26.1",
"cz-conventional-changelog": "^2.0.0",
"exports-loader": "^0.6.3",
"expose-loader": "^0.7.1",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"file-loader": "^0.10.0",
"html-loader": "~0.4.4",
"html-minify-loader": "^1.1.0",
"html-webpack-plugin": "^2.28.0",
"imports-loader": "^0.7.0",
"jasmine-spec-reporter": "3.2.0",
"jquery": "^3.1.1",
"jshint": "^2.9.4",
"jshint-stylish": "^2.2.1",
"json-loader": "~0.5.4",
"karma": "^1.3.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-spec-reporter": "0.0.26",
"ng-annotate-loader": "~0.2.0",
"postcss-loader": "^1.3.0",
"protractor": "^5.0.0",
"raw-loader": "^0.5.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-dashboard": "^0.3.0",
"webpack-dev-server": "^2.3.0"
},
"scripts": {
"prebuild": "rm -rf dist && mkdir dist dist/assets/",
"postbuild": "cp -r src/assets/img dist/assets/",
"build": "BUILD=true USE_CONFIG=$npm_config_appConfig ./node_modules/webpack/bin/webpack.js",
"build:dev-api": "npm run build --appConfig=dev-api",
"build:production": "npm run build --appConfig=production",
"start": "USE_CONFIG=$npm_config_appConfig npm run webpack-dashboard -- npm run webpack-dev-server",
"start:production": "npm start --appConfig=production",
"jshint": "./node_modules/jshint/bin/jshint --reporter ./node_modules/jshint-stylish/ src/app",
"precommit": "npm run jshint",
"commit": "git-cz",
"test": "./node_modules/karma/bin/karma start ./karma.config.js",
"e2e": "./node_modules/protractor/bin/protractor protractor.config.js",
"webpack-dashboard": "USE_CONFIG=$npm_config_appConfig ./node_modules/webpack-dashboard/bin/webpack-dashboard.js",
"webpack-dev-server": "./node_modules/webpack-dev-server/bin/webpack-dev-server.js --config webpack.config.js --open --progress --profile --watch --content-base src/"
},
"dependencies": {
"ejs": "^2.5.5",
"express": "^4.14.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}