-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
110 lines (110 loc) · 2.42 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "euler-gantt",
"version": "0.0.1",
"description": "euler-gantt",
"scripts": {
"start": "webpack-dev-server --config webpack.config.dev.js --port 3000 --progress --colors",
"prod": "webpack --config webpack.config.prod.js --progress --colors",
"start:prod": "node startProduct.js",
"test": "karma start --browsers PhantomJS"
},
"eslintConfig": {
"extends": "airbnb-base",
"env": {
"browser": true,
"node": true
},
"rules": {
"comma-dangle": [
"error",
"never"
],
"quotes": [
"error",
"double"
],
"no-underscore-dangle": [
"error",
{
"allow": [
"_meta"
],
"allowAfterThis": true
}
],
"no-unused-expressions": [
"error",
{
"allowShortCircuit": true
}
],
"max-len": [
"warn",
{
"code": 150
}
],
"radix": [
"error",
"as-needed"
],
"no-plusplus": [
"error",
{
"allowForLoopAfterthoughts": true
}
]
},
"globals": {
"$": false
}
},
"babel": {
"presets": [
[
"es2015",
{
"modules": false
}
]
]
},
"dependencies": {
"interactjs": "^1.2.8",
"moment": "^2.18.1"
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"babel-runtime": "^6.18.0",
"bluebird": "^3.5.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.26.1",
"eslint": "^3.18.0",
"eslint-config-airbnb-base": "^11.1.1",
"eslint-loader": "^1.6.3",
"eslint-plugin-import": "^2.2.0",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.10.1",
"istanbul-instrumenter-loader": "^2.0.0",
"karma": "^1.5.0",
"karma-chai": "^0.1.0",
"karma-chai-as-promised": "^0.1.2",
"karma-cli": "^1.0.1",
"karma-coverage-istanbul-reporter": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.3",
"mocha": "^3.2.0",
"sinon": "^2.1.0",
"style-loader": "^0.13.2",
"url-loader": "^0.5.7",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.3.0"
}
}