-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.21 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
{
"name": "webrosie",
"version": "1.0",
"description": "Front-end for rosie web module",
"main": "src/js/main.js",
"scripts": {
"lint": "eslint --fix --ext='[.js, .jsx]' src/js",
"test": "mocha --compilers js:babel-register --recursive 'test/**/*.js*'",
"watch": "go-bindata -debug public/... && webpack --progress -w",
"build": "webpack --config webpack.config.prod.js --progress && go generate && go build",
"build:dev": "webpack --progress && go-bindata -debug public/... && go build",
"build:assets": "webpack"
},
"author": "Rolando Urquiza <[email protected]>",
"repository": {
"type": "git",
"url": "https://www.github.com/pyforce/webrosie"
},
"license": "ISC",
"devDependencies": {
"babel-eslint": "^8.0.1",
"chai": "^4.1.2",
"chai-enzyme": "^0.8.0",
"enzyme": "^3.1.0",
"eslint": "^4.8.0",
"eslint-plugin-react": "^7.4.0",
"mocha": "^4.0.0",
"react-addons-test-utils": "^15.4.2",
"react-test-renderer": "^16.0.0",
"react-test-utils": "0.0.1",
"sinon": "^4.0.1"
},
"dependencies": {
"autoprefixer": "^7.1.4",
"axios": "^0.16.2",
"babel-core": "^6.9.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-polyfill": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.22.0",
"create-react-class": "^15.6.2",
"css-loader": "^0.28.7",
"cssnano": "^3.10.0",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^1.1.5",
"formsy-mui": "^1.0.4",
"formsy-react-2": "^0.20.1",
"html-webpack-plugin": "^2.30.1",
"leaflet": "1.0.0-rc.3",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"material-ui": "^0.19.3",
"mobile-detect": "^1.3.5",
"nipplejs": "^0.6.7",
"normalize.less": "^1.0.0",
"postcss-loader": "^2.0.6",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.6",
"react-responsive": "^2.0.0",
"react-rnd": "^7.1.4",
"react-tap-event-plugin": "^3.0.2",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"webpack": "^3.6.0"
},
"browserslist": [
"last 2 versions",
"> 1%"
]
}