This repository has been archived by the owner on Mar 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.39 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
{
"dependencies": {
"material-ui": "^0.17.3",
"prop-types": "^15.5.8",
"react": "^15.5.0",
"react-addons-css-transition-group": "^15.5.0",
"react-dom": "^15.5.0",
"react-redux": "^5.0.4",
"react-router": "^3.0.5",
"react-router-redux": "^4.0.8",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-loader": "^6.4.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-airbnb": "^2.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^3.5.0",
"cpy-cli": "^1.0.1",
"css-loader": "^0.28.0",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^4.3.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-standard": "^3.0.1",
"exports-loader": "^0.6.4",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.28.0",
"ignore-styles": "^5.0.1",
"imports-loader": "^0.7.1",
"jsdom": "^9.12.0",
"json-loader": "^0.5.4",
"mocha": "^3.2.0",
"raw-loader": "^0.5.1",
"react-addons-test-utils": "^15.5.0",
"react-hot-loader": "^3.0.0-beta.6",
"sinon": "^2.1.0",
"style-loader": "^0.16.1",
"uglify-js": "^2.8.22",
"uglifyjs-webpack-plugin": "^0.4.2",
"url-loader": "^0.5.8",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.2"
},
"main": "src/main/web/app/index.js",
"name": "sample-app",
"private": true,
"scripts": {
"build": "webpack -p --progress --env.prod",
"build:dev": "webpack --progress --env.dev",
"lint": "eslint --ext=jsx --ext=js ./src",
"lint:fix": "eslint --ext=jsx --ext=js --fix ./src",
"start": "webpack-dev-server --host 0.0.0.0 --progress --env.dev --watch-poll",
"test": "NODE_PATH=./src/main/web/app mocha --opts mocha.opts",
"test:watch": "NODE_PATH=./src/main/web/app mocha --watch --opts ./src/main/web/mocha.opts",
"yarn:install": "yarn install"
},
"version": "1.0.0"
}