-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.98 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
{
"name": "test161-web-app",
"private": "true",
"version": "0.0.1",
"description": "Test161 web app",
"main": "src/server.js",
"browser": "src/client.js",
"scripts": {
"lint": "eslint ./src --ext .js --ext .jsx",
"lintfix": "npm run lint -- --fix",
"testonly": "mocha .scripts/mocha_boot.js src/client/**/tests/**/*.js --compilers js:babel-core/register",
"test": "npm run lint && npm run testonly",
"test-watch": "npm run testonly -- --watch --watch-extensions js,jsx"
},
"dependencies": {
"domready": "^1.0.8",
"highcharts": "^4.2.3",
"jquery": "^2.2.1",
"mantra-core": "^1.2.0",
"react": "^15.0.0",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.0.0",
"react-mixin": "^3.0.3",
"react-mounter": "^1.0.0"
},
"devDependencies": {
"babel": "^6.3.26",
"babel-core": "^6.3.26",
"babel-loader": "^6.2.0",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-react-require": "2.x.x",
"babel-plugin-react-transform": "^2.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.2",
"babel-polyfill": "6.x.x",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-preset-stage-2": "6.x.x",
"babel-root-slash-import": "1.x.x",
"chai": "3.x.x",
"css-loader": "^0.23.0",
"enzyme": "^2.0.0",
"eslint": "^2.4.0",
"eslint-plugin-babel": "^3.1.0",
"eslint-plugin-react": "4.2.1",
"expose-loader": "^0.7.1",
"extract-text-webpack-plugin": "^0.9.1",
"file-loader": "^0.8.5",
"jsdom": "^8.0.4",
"less": "^2.3.1",
"less-loader": "^2.2.2",
"mocha": "2.x.x",
"react-addons-test-utils": "^0.14.6",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.1",
"redbox-react": "^1.2.0",
"sinon": "1.17.x",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.13.0",
"webpack-hot-middleware": "^2.4.1",
"html-loader": "^0.4.0"
}
}