-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.3 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
{
"name": "ccms-selector-components",
"version": "0.0.12",
"scripts": {
"start": "node server.js",
"build": "rm -rf dist && webpack --config ./webpack/prod.js",
"release": "./scripts/publish.sh"
},
"main": "./components.js",
"private": false,
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "ShuyunFF2E/ccms-bs-components"
},
"dependencies": {
"angular": "=1.5.8",
"angular-es-utils": "^2.1.5",
"angular-resource": "=1.5.8",
"angular-ui-router": "~0.2.18",
"angularjs-dragula": "^2.0.0",
"ccms-ep-components": "^1.1.26",
"common-javascript-utils": "0.0.1"
},
"devDependencies": {
"autoprefixer": "^7.1.4",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.5",
"babel-loader": "^7.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"core-js": "^2.5.1",
"css-loader": "^0.28.7",
"eslint": "^4.7.2",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.9.0",
"express": "^4.16.3",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"node-sass": "^4.9.2",
"postcss-loader": "^2.0.6",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"webpack": "^3.6.0",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.19.1"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "eslint:recommended",
"env": {
"es6": true
},
"rules": {
"no-console": "off",
"no-undef": "off",
"new-cap": "off",
"no-underscore-dangle": "off",
"no-unused-expressions": "off",
"no-process-env": "off",
"no-unused-vars": "warn",
"camelcase": [
"error",
{
"properties": "never"
}
],
"prefer-destructuring": "off"
}
}
}