-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.28 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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "tictactoe",
"version": "0.1.0",
"description": "",
"scripts": {
"start": "parcel index.html",
"build": "npm run clear && parcel build index.html",
"fix-parcel": "npx npm-force-resolutions && npm i && npm i",
"lint": "eslint src/**/*.js",
"format": "prettier --write src/**/*.js",
"format:lint": "npm run format && npm run lint",
"clear": "rimraf dist .parcel-cache"
},
"resolutions": {
"@babel/preset-env": "7.13.8"
},
"license": "MIT",
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-preset-nano-react-app": "^0.1.0",
"eslint": "^7.21.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"parcel": "1.12.4",
"prettier": "^2.2.1",
"rimraf": "^3.0.2"
},
"babel": {
"presets": [
"nano-react-app"
],
"plugins": [
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
},
"yt1"
],
[
"@babel/plugin-proposal-private-methods",
{
"loose": true
},
"yt2"
]
]
}
}