-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.01 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.01 KB
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
{
"name": "suspense-workshop",
"version": "1.0.0",
"repository": "git@github.com:renekopcem/suspense-workshop.git",
"author": "Roman Klos <roman.klos@kopcem.net>",
"license": "MIT",
"private": true,
"devDependencies": {
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"parcel-bundler": "^1.12.4",
"prettier": "^1.19.1",
"typescript": "^3.7.4"
},
"dependencies": {
"react": "0.0.0-experimental-b53ea6ca0",
"react-dom": "0.0.0-experimental-b53ea6ca0"
},
"scripts": {
"start": "parcel --no-hmr public/index.html"
},
"browserslist": [
"last 1 Chrome versions"
]
}