-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.21 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.21 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
{
"name": "directly-training-project",
"version": "0.1.0",
"description": "React+Redux",
"homepage": "https://github.com/makingsensetraining/DirectlyTraining",
"keywords": [
"react"
],
"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",
"prestart": "npm run validate",
"start": "webpack-dev-server --open --config webpack.dev.js",
"lint": "eslint --ext .js --ext .jsx --fix ./app --o buildlog/linter.html -f html",
"test": "jest --coverage",
"test:dev": "jest --watch",
"prevalidate": "rimraf buildlog",
"validate": "npm run lint && npm run test"
},
"dependencies": {
"axios": "^0.18.0",
"babel-eslint": "^8.2.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-polyfill": "^6.26.0",
"bootstrap": "^4.1.1",
"history": "4.7.2",
"lodash": "^4.17.10",
"prop-types": "^15.6.2",
"react": "16.3.0",
"react-bootstrap-table-next": "^0.1.13",
"react-bootstrap-table2-paginator": "^0.1.5",
"react-dom": "16.3.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"reactstrap": "^6.1.0",
"rimraf": "^2.6.2"
},
"devDependencies": {
"babel-core": "6.26.3",
"babel-jest": "22.4.3",
"babel-loader": "7.1.4",
"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-loader": "2.0.0",
"eslint-plugin-react": "7.7.0",
"html-webpack-plugin": "3.2.0",
"jest": "22.4.3",
"jest-html-reporter": "^2.4.1",
"style-loader": "^0.21.0",
"sinon": "^4.5.0",
"uglifyjs-webpack-plugin": "1.2.5",
"webpack": "4.6.0",
"webpack-cli": "2.0.15",
"webpack-dev-server": "3.1.3",
"webpack-merge": "4.1.2"
}
}