-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"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/core": "^7.15.8",
"babel-eslint": "^10.1.0",
"babel-preset-nano-react-app": "^0.1.0",
"eslint": "^8.0.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"parcel": "1.12.4",
"prettier": "^2.4.1",
"rimraf": "^3.0.2"
},
"babel": {
"presets": [
"nano-react-app"
]
}
}