forked from silvestrevivo/react-parcel-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.89 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
{
"name": "react-parcel-starter",
"version": "2.0.0",
"description": "ReactJS project starter developed with ParcelJS.",
"main": "index.html",
"scripts": {
"start": "parcel src/index.html",
"build": "parcel build src/index.html --out-dir build/ --public-url ./",
"test": "jest --watchAll",
"coverage": "test -- --coverage",
"precommit": "lint-staged"
},
"keywords": [
"react",
"starter",
"parcel",
"testing"
],
"author": "@silvestrevivo",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^9.1.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-react": "^6.24.1",
"cssnano": "^4.0.5",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.10.0",
"husky": "^0.14.3",
"jest": "^22.4.2",
"lint-staged": "^6.1.1",
"node-sass": "^4.9.3",
"prettier": "^1.14.2",
"react-test-renderer": "^16.2.0"
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"git add"
]
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/setupTests.js",
"collectCoverageFrom": [
"src/**/*.js",
"!src/index.js"
]
},
"dependencies": {
"axios": "^0.18.0",
"classnames": "^2.2.6",
"normalize.css": "^8.0.0",
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-hot-loader": "^4.3.4",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0"
}
}