-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
38 lines (38 loc) · 1.11 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
{
"name": "players-react-skeleton",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=development parcel src/index.html -p 3000",
"build": "cross-env NODE_ENV=production parcel build index.html --public-url",
"e2e": "cypress open",
"unit": "jest",
"lint:js": "eslint src/**/**/*.js src/**/**/*.jsx tests/**/**/*.js",
"lint:style": "stylelint src/**/**/*.scss"
},
"dependencies": {
"axios": "^0.18.0",
"babel-preset-react-app": "^3.1.1",
"cross-env": "^5.2.0",
"cypress": "^3.0.1",
"parcel-bundler": "^1.9.0",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-router-dom": "^4.4.0-alpha.1",
"whatwg-fetch": "^2.0.4"
},
"devDependencies": {
"enzyme": "^3.3.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"jest": "^23.4.1",
"prettier": "^1.13.5",
"prettierrc": "0.0.0-5",
"stylelint": "^9.3.0",
"stylelint-config-standard": "^18.2.0"
}
}