-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
80 lines (80 loc) · 2.44 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
{
"name": "ccms-angular-styleguide",
"version": "1.0.0",
"main": "./index.js",
"scripts": {
"build:develop": "webpack --config webpack-build.config.js --progress --env develop",
"build:qa": "webpack --config webpack-build.config.js --progress --env qa",
"build:stage": "webpack --config webpack-build.config.js --progress --env stage",
"build:production": "webpack --config webpack-build.config.js --progress --env production",
"lint": "NODE_EVN=test eslint src",
"start": "node server.js",
"test": "npm run lint",
"prepush": "npm run lint"
},
"devDependencies": {
"assets-webpack-plugin": "^3.4.0",
"autoprefixer": "^6.3.6",
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"clean-webpack-plugin": "^0.1.10",
"css-loader": "^0.21.0",
"cssnano": "^3.7.4",
"eslint": "^3.7.1",
"eslint-config-angular": "^0.5.0",
"eslint-config-shuyun": "github:shuyunff2e/eslint-config-shuyun",
"eslint-friendly-formatter": "^2.0.4",
"eslint-loader": "^1.5.0",
"eslint-plugin-angular": "^1.4.1",
"express": "^4.13.3",
"extract-loader": "^0.1.0",
"extract-text-webpack-plugin": "^2.0.0-beta.4",
"file-loader": "^0.8.5",
"html-loader": "^0.4.0",
"html-webpack-plugin": "^2.18.0",
"husky": "^0.10.1",
"json-mock-kuitos": "^1.0.3",
"kuitos-angular-utils": "^1.3.10",
"node-dir": "^0.1.11",
"node-sass": "^4.0.0",
"optimize-css-assets-webpack-plugin": "^1.3.0",
"postcss-loader": "^0.7.0",
"raw-loader": "^0.5.1",
"resolve-url-loader": "^1.4.3",
"sass-loader": "^4.1.0",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^2.2.0-rc.0",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.4.1"
},
"dependencies": {
"angular": "^1.5.0",
"angular-es-utils": "^1.2.23",
"angular-resource": "^1.5.0",
"angular-ui-router": "^0.2.18",
"ccms-components": "^2.1.0",
"normalize.css": "^4.1.1"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "shuyun/angular",
"rules": {
"no-process-env": "off",
"global-require": "off",
"angular/json-functions": "off"
}
},
"author": "kuitos",
"keywords": [
"angular",
"es6",
"seed"
],
"private": true
}