-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
{
"name": "todos",
"version": "1.3.0",
"description": "Simple todo app created on React with Redux store",
"scripts": {
"start": "rm -rf dist && parcel src/index.html -p 3000",
"build": "rm -rf dist && parcel build src/index.html --public-url /todos",
"publish": "gh-pages -d dist",
"lint": "./node_modules/.bin/eslint ./src/**/*.{js,jsx}",
"lint-fix": "./node_modules/.bin/eslint ./src/**/*.{js,jsx} --fix"
},
"keywords": [
"todo"
],
"author": "Dmytriev Viacheslav",
"license": "MIT",
"dependencies": {
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-logger": "^3.0.6"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.3",
"gh-pages": "^1.2.0",
"parcel": "^1.11.0",
"parcel-plugin-sw-precache": "^0.5.2",
"prettier": "^1.15.3"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}