-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.27 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.27 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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "directly-training-project",
"version": "0.1.0",
"description": "React+Redux",
"homepage": "https://github.com/makingsensetraining/DirectlyTraining",
"keywords": [
"react",
"redux"
],
"bugs": {
"url": "https://github.com/makingsensetraining/DirectlyTraining/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/makingsensetraining/DirectlyTraining.git"
},
"author": "Making Sense",
"license": "MIT",
"scripts": {
"prebuild": "npm run validate",
"build": "webpack --config webpack.prod.js",
"prebuild:analyze": "webpack --config webpack.prod.js --profile --json > buildlog/stats.json",
"build:analyze": "webpack-bundle-analyzer buildlog/stats.json dist -l debug",
"prestart": "npm run validate",
"prestart:local": "npm run validate",
"start": "npm run start:dev",
"start:dev": "cross-env NODE_ENV=development webpack-dev-server --open --config webpack.dev.js",
"start:local": "cross-env NODE_ENV=local webpack-dev-server --open --config webpack.dev.js",
"lint": "eslint --ext .js --ext .jsx --fix ./app --o buildlog/linter.html -f html",
"sass-lint": "sass-lint --config .sasslintrc.json \"app/**/*.scss\" --verbose --no-exit",
"test": "jest --coverage",
"test:watch": "jest --watch --coverage",
"prevalidate": "rimraf buildlog",
"validate": "run-p -c lint sass-lint test",
"prepush": "npm run validate"
},
"dependencies": {
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"bootstrap": "^4.1.1",
"cross-env": "^5.2.0",
"history": "4.7.2",
"js-logger": "^1.4.1",
"lodash.get": "^4.4.2",
"prop-types": "^15.6.2",
"react": "16.2.0",
"react-bootstrap-table-next": "^0.1.13",
"react-bootstrap-table2-paginator": "^0.1.5",
"redux-devtools-extension": "2.13.2",
"react-dom": "16.2.0",
"react-redux": "5.0.7",
"react-router": "4.2.0",
"react-router-dom": "4.2.2",
"react-router-redux": "5.0.0-alpha.9",
"reactstrap": "^6.1.0",
"redux": "3.7.2",
"redux-actions": "^2.4.0",
"redux-promise-middleware": "^5.1.1",
"redux-thunk": "2.2.0",
"rimraf": "^2.6.2"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.2",
"babel-loader": "7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "6.24.1",
"clean-webpack-plugin": "0.1.19",
"css-loader": "^0.28.11",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"eslint": "4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-loader": "2.0.0",
"eslint-plugin-import": "2.12.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "7.9.1",
"html-webpack-plugin": "3.2.0",
"husky": "^0.14.3",
"jest": "22.4.3",
"jest-html-reporter": "^2.4.1",
"node-sass": "^4.9.2",
"npm-run-all": "^4.1.3",
"redux-mock-store": "1.5.1",
"sass-lint": "^1.12.1",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "1.2.5",
"webpack": "4.6.0",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "2.0.15",
"webpack-dev-server": "3.1.3",
"webpack-merge": "4.1.2"
}
}