-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.56 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
{
"name": "lannister-dashboard",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf dist/",
"test": "mocha --compilers js:babel-core/register --require ./test/testHelper.js \"test/**/*@(.js|.jsx)\"",
"dev": "npm run clean && npm run copy && WEBPACK_ENV=dev ./node_modules/.bin/webpack --inline",
"dist": "npm run clean && npm run copy && WEBPACK_ENV=dist ./node_modules/.bin/webpack",
"test:run": "npm run clean && npm run test -- --watch --watch-extensions jsx",
"dev:run": "npm run clean && npm run copy && WEBPACK_ENV=dev webpack-dev-server",
"dist:run": "npm run clean && npm run copy && WEBPACK_ENV=dist webpack-dev-server",
"copy": "copyfiles -f ./src/index.html ./dist",
"dist:install": "npm run clean && npm run dist && copyfiles -f ./dist/* $INSTALL_PATH",
"dist:install:default": "npm run clean && npm run dist && copyfiles -f ./dist/* ../lannister/server/src/main/webapp/admin"
},
"author": "Park Hyunjeong",
"license": "ISC",
"babel": {
"presets": [
"es2015",
"react"
]
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true,
"modules": true
}
},
"parser": "babel-eslint"
},
"devDependencies": {
"autoprefixer": "^6.4.0",
"babel": "^6.5.2",
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"chai": "^3.5.0",
"chai-immutable": "^1.6.0",
"copyfiles": "^1.0.0",
"css-loader": "^0.25.0",
"eslint": "^3.3.1",
"eslint-loader": "^1.5.0",
"file-loader": "^0.9.0",
"jsdom": "^9.4.1",
"mocha": "^3.0.2",
"postcss-loader": "^0.13.0",
"precss": "^1.4.0",
"react-addons-test-utils": "^15.3.1",
"react-hot-loader": "^3.0.0-beta.5",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"bootstrap": "^3.3.7",
"chart.js": "^2.2.2",
"classnames": "^2.2.5",
"font-awesome": "^4.6.3",
"immutable": "^3.8.1",
"json-loader": "^0.5.4",
"jquery": "^3.1.0",
"mqtt": "^2.0.1",
"mqtt-regex": "^1.0.5",
"react": "^15.3.1",
"react-addons-pure-render-mixin": "^15.3.1",
"react-bootstrap-table": "^2.4.0",
"react-dom": "^15.3.1",
"react-redux": "^4.4.5",
"react-router": "^2.6.1",
"redux": "^3.5.2",
"request": "^2.75.0",
"socket.io-client": "^1.4.8"
}
}