This repository has been archived by the owner on May 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.43 KB
/
package.json
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
{
"name": "React-Hot-Dev-Starter",
"version": "1.0.1",
"description": "A skeleton project for starting with a hot-loading development react project server",
"main": "index.html",
"scripts": {
"start": "npm run build && node server.js",
"start:only-server": "node server.js",
"build": "rm -rf dist && webpack --config webpack/webpack.prod.js --progress --profile --colors",
"dev": "webpack-dashboard -- webpack-dev-server --open --config webpack/webpack.dev.js --progress",
"test": "jest --watch",
"precommit": "jest && lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"jest": {
"verbose": true,
"setupTestFrameworkScriptFile": "./testSetup.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VasilyShelkov/React-Hot-Dev-Starter.git"
},
"keywords": [
"react",
"hot-loading",
"webpack-dev-server",
"babel6",
"prettier"
],
"author": "Vasily Shelkov",
"license": "MIT",
"bugs": {
"url": "https://github.com/VasilyShelkov/React-Hot-Dev-Starter/issues"
},
"homepage": "https://github.com/VasilyShelkov/React-Hot-Dev-Starter#readme",
"dependencies": {
"babel-core": "^6.20.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"express": "^4.15.3",
"html-webpack-plugin": "^2.30.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-router": "^4.1.2",
"react-router-dom": "^4.1.2",
"styled-components": "^2.1.1",
"webpack": "^3.4.1"
},
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"chai": "^4.1.0",
"enzyme": "^2.9.1",
"eslint": "^4.3.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"extend": "^3.0.1",
"husky": "^0.14.3",
"jest": "^20.0.4",
"jest-styled-components": "^4.3.0",
"lint-staged": "^4.0.2",
"mocha": "^3.2.0",
"prettier": "^1.5.3",
"react-addons-test-utils": "^15.4.1",
"react-hot-loader": "^3.0.0-beta.7",
"react-test-renderer": "^15.4.1",
"sinon": "^2.4.1",
"sinon-test": "^2.0.0",
"webpack-dashboard": "^0.4.0",
"webpack-dev-server": "^2.6.1"
}
}