-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.2 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
{
"name": "kore",
"version": "0.0.0",
"repository": {
"type": "git",
"url": "https://github.com/fastmonkeys/kore"
},
"dependencies": {
"babel-core": "^5.1.10",
"babel-loader": "^5.0.0",
"babel-runtime": "^5.1.10",
"codecov": "^2.3.0",
"css-loader": "^0.10.1",
"eslint-loader": "^1.9.0",
"express": "^4.12.3",
"extract-text-webpack-plugin": "^0.3.8",
"file-loader": "^0.8.1",
"flux": "^2.0.1",
"fuse.js": "^1.2.2",
"html-webpack-plugin": "^1.4.0",
"humps": "^0.5.2",
"leaflet": "^0.7.3",
"less": "^2.5.0",
"less-loader": "^2.2.0",
"lodash": "3.9.1",
"normalizr": "^0.1.3",
"proj4leaflet": "^0.7.1",
"react": "^0.13.3",
"react-document-title": "^1.0.2",
"react-loader": "^1.2.0",
"react-router": "^0.13.3",
"react-select": "git+https://[email protected]/YoYuUm/react-select.git#build",
"react-slider": "~0.4.2",
"style-loader": "^0.10.1",
"superagent": "~1.2.0",
"url-loader": "^0.5.5",
"webpack": "^1.8.5"
},
"devDependencies": {
"chai": "^2.3.0",
"eslint": "^4.6.1",
"eslint-plugin-react": "^7.3.0",
"http-proxy": "^1.10.1",
"isparta": "^3.0.2",
"isparta-instrumenter-loader": "^0.2.1",
"karma": "^0.12.31",
"karma-chai": "^0.1.0",
"karma-chai-sinon": "~0.1.4",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^0.3.1",
"karma-mocha": "^0.1.10",
"karma-mocha-reporter": "^1.0.2",
"karma-webpack": "^1.5.1",
"mocha": "^2.2.4",
"protractor": "^2.0.0",
"react-hot-loader": "^1.2.5",
"react-tools": "^0.13.3",
"sinon": "^2.1.0",
"sinon-chai": "^2.9.0",
"webpack-dev-server": "^1.8.0"
},
"scripts": {
"start": "node server.js",
"postinstall": "node deploy.js",
"build": "./node_modules/.bin/webpack --config conf/webpack.production.js",
"test": "./node_modules/karma/bin/karma start conf/karma.conf.js --single-run",
"test:watch": "./node_modules/karma/bin/karma start conf/karma.conf.js",
"test:coverage": "./node_modules/karma/bin/karma start conf/karma.coverage.conf.js --single-run",
"test:ci": "./node_modules/karma/bin/karma start conf/karma.ci.conf.js --single-run",
"lint": "eslint ."
}
}