This repository was archived by the owner on Apr 23, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.05 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.05 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
{
"name": "sample-react-router-redux-jwt",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"production": "node server.js",
"start": "webpack-dev-server --open",
"clean": "rimraf dist",
"lint": "eslint src test",
"test": "cross-env NODE_ENV=test jest --config .jestrc",
"test:watch": "cross-env NODE_ENV=test jest --config .jestrc --watchAll",
"check": "npm run flow && npm run lint && npm test",
"build": "npm run clean && cross-env NODE_ENV=production webpack src/index.js --config webpack.config.production.js",
"preversion": "npm run clean && npm run check",
"postversion": "git push && git push --tags && npm run clean",
"prepublish": "npm run clean && npm run build",
"coveralls": "npm run test && coveralls < coverage/lcov.info"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^5.0.0",
"babel-jest": "^20.0.1",
"babel-loader": "^6.4.1",
"babel-plugin-istanbul": "^4.1.3",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.22.0",
"babel-preset-react-hmre": "^1.1.0",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"coveralls": "^2.13.1",
"cross-env": "^1.0.7",
"css-loader": "^0.23.1",
"detect-port": "^1.1.1",
"enzyme": "^2.7.1",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^5.0.1",
"eslint-plugin-react": "^3.16.1",
"extract-text-webpack-plugin": "^2.0.0-rc.2",
"flow-bin": "^0.46.0",
"generator-redux-stack": "^9.0.0",
"html-webpack-plugin": "^2.10.0",
"jest": "^19.0.0",
"jest-css-modules": "^1.1.0",
"jest-fetch-mock": "^1.1.1",
"node-sass": "^3.7.0",
"nyc": "^10.3.2",
"portfinder": "^1.0.13",
"react-css-modules": "^3.7.6",
"react-test-renderer": "^15.4.2",
"redux-devtools": "^3.1.1",
"redux-devtools-diff-monitor": "^5.0.5",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.2.0",
"redux-import-export-monitor": "^1.0.0",
"redux-logger": "^2.5.2",
"redux-mock-store": "^1.2.3",
"redux-slider-monitor": "^1.0.7",
"regenerator-runtime": "^0.10.5",
"rimraf": "^2.5.2",
"sass-loader": "^3.2.0",
"sinon": "^1.17.3",
"style-loader": "^0.13.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.2.0",
"yo": "^1.8.5"
},
"dependencies": {
"axios": "^0.16.1",
"express": "^4.15.2",
"history": "^4.6.1",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"prop-types": "^15.5.8",
"react": "^15.0.0",
"react-audio-player": "^0.4.1",
"react-dom": "^15.0.0",
"react-redux": "^4.4.0",
"react-router-dom": "^4.1.1",
"react-router-redux": "^5.0.0-alpha.4",
"redux": "^3.3.1",
"redux-actions": "^1.2.1",
"redux-thunk": "^1.0.3",
"semantic-ui-react": "^0.68.3"
}
}