-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.88 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.88 KB
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
{
"name": "one-web",
"version": "1.0.0",
"description": "web application for exterion media",
"main": "index.js",
"scripts": {
"lint:scripts": "eslint 'src/app/**/*.js' --fix",
"lint:styles": "stylelint 'src/app/**/*.scss'",
"lint": "npm run lint:scripts & npm run lint:styles",
"prestart": "open http://localhost:8080",
"start": "webpack-dev-server --progress --color --inline --hot",
"webpackStats": "open ./reports/webpackStats/webpackStats.html",
"build": "webpack --bail --display-error-details",
"build:dev": "npm run build && npm run test:coverage && npm run webpackStats",
"build:prod": "NODE_ENV=production npm run build"
},
"author": "",
"license": "ISC",
"devDependencies": {
"app-root-dir": "1.0.2",
"babel-core": "6.24.1",
"babel-eslint": "7.2.3",
"babel-jest": "20.0.3",
"babel-loader": "7.0.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"babel-register": "6.24.1",
"clean-webpack-plugin": "0.1.16",
"copy-webpack-plugin": "4.0.1",
"css-loader": "0.28.4",
"eslint": "4.2.0",
"eslint-config-airbnb": "15.0.2",
"eslint-loader": "1.9.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jasmine": "2.7.1",
"eslint-plugin-react": "7.1.0",
"extract-text-webpack-plugin": "2.1.2",
"file-loader": "0.11.2",
"html-webpack-plugin": "2.28.0",
"node-sass": "4.5.3",
"sass-loader": "6.0.6",
"style-loader": "0.18.2",
"stylelint": "8.0.0",
"stylelint-config-standard": "17.0.0",
"stylelint-webpack-plugin": "0.8.0",
"webpack": "2.6.1",
"webpack-dev-server": "2.4.5",
"webpack-visualizer-plugin": "0.1.11"
},
"dependencies": {
"prop-types": "15.5.10",
"react": "15.6.1",
"react-dom": "15.6.1",
"react-redux": "5.0.5",
"redux": "3.7.0",
"redux-logger": "3.0.6"
}
}