-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·97 lines (97 loc) · 2.75 KB
/
package.json
File metadata and controls
executable file
·97 lines (97 loc) · 2.75 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
{
"name": "quick-react-starter",
"version": "0.1.0",
"description": "Opinionated React build tooling starter kit",
"author": "Jonathan Warning",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jwarning/quick-react-starter"
},
"tags": [
"quick",
"react",
"starter"
],
"keywords": [
"quick",
"react",
"starter"
],
"bin": {
"qrs": "bin/index.js"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"@babel/core": "^7.0.0-beta.34",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.34",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0-beta.34",
"@babel/polyfill": "^7.0.0-beta.34",
"@babel/preset-env": "^7.0.0-beta.34",
"@babel/preset-flow": "^7.0.0-beta.34",
"@babel/preset-react": "^7.0.0-beta.34",
"@babel/register": "^7.0.0-beta.34",
"babel-eslint": "^8.0.3",
"babel-loader": "^8.0.0-beta.0",
"chai": "^4.1.2",
"chalk": "^2.3.0",
"commander": "^2.12.2",
"create-bundle": "^1.0.2",
"create-react-class": "^15.6.2",
"cross-env": "^5.1.1",
"cross-spawn": "^5.1.0",
"css-loader": "^0.28.7",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"eslint": "^4.12.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"flow-bin": "^0.60.1",
"html-webpack-plugin": "^2.30.1",
"ignore-styles": "^5.0.1",
"image-webpack-loader": "^3.4.2",
"isomorphic-unfetch": "^2.0.0",
"lodash": "^4.17.4",
"logchange": "^2.0.4",
"mocha": "^4.0.1",
"nock": "^9.1.4",
"node-sass": "^4.7.2",
"postcss": "^6.0.14",
"postcss-cssnext": "^3.0.2",
"postcss-loader": "^2.0.9",
"prettier": "^1.9.0",
"prettier-eslint": "^8.2.5",
"prettier-eslint-cli": "^4.4.2",
"promptly": "^2.2.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^3.1.3",
"react-redux": "^5.0.6",
"react-test-renderer": "^16.2.0",
"react-web-component-injector": "^1.1.0",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"stylelint": "^8.3.1",
"stylelint-config-sass-guidelines": "^4.0.1",
"stylelint-config-standard": "^18.0.0",
"stylelint-webpack-plugin": "^0.9.0",
"unfetch": "^3.0.0",
"webpack": "^3.10.0",
"webpack-dev-middleware": "^1.12.2",
"webpack-dev-server": "^2.9.5",
"webpack-hot-middleware": "^2.21.0"
}
}