-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 831 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 831 Bytes
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
{
"name": "react-mutiny",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:erdemuslu/react-mutiny.git",
"author": "Erdem Uslu <usluerdem@yandex.com>",
"license": "MIT",
"scripts": {
"start": "parcel index.html",
"build": "parcel build index.html --no-source-maps",
"clean": "rm -rf .cache dist",
"deploy": "yarn clean && yarn build && surge dist react-mutiny.surge.sh"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^1.7.0",
"parcel": "^1.12.4",
"sass": "^1.25.0"
},
"dependencies": {
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0"
}
}