-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.21 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
{
"name": "react-ts-parcel",
"source": "src/index.html",
"browserslist": "> 0.5%, last 2 versions, not dead",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "parcel",
"build": "parcel build",
"clean": "rimraf ./dist",
"lint": "eslint --ext ts,tsx src",
"lint-fix": "eslint --ext ts,tsx src --fix"
},
"devDependencies": {
"@parcel/transformer-svg-react": "^2.0.0-nightly.1739",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"autoprefixer": "^10.3.2",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"parcel": "^2.0.0-rc.0",
"postcss": "^8.0.0",
"postcss-custom-properties": "^11.0.0",
"postcss-import": "^14.0.2",
"postcss-url": "^10.1.3",
"rimraf": "^3.0.2"
},
"dependencies": {
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.3.5"
}
}