-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.33 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
{
"name": "tic-tac-toe",
"version": "0.1.0",
"homepage": "https://gonjila.github.io/Tic-Tac-Toe",
"description": "",
"scripts": {
"start": "parcel index.html",
"build": "parcel build index.html --public-url '.'",
"predeploy": "rm -rf dist && parcel build index.html --public-url '.'",
"deploy": "gh-pages -d dist",
"lint": "eslint src/**/*.js",
"format": "prettier --write src/**/*.js",
"format:lint": "npm run format && npm run lint",
"clear": "rimraf dist .parcel-cache"
},
"license": "MIT",
"dependencies": {
"hosted-git-info": "^4.0.2",
"is-svg": "^4.3.1",
"node-sass": "^5.0.0",
"postcss": "^8.2.15",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"surge": "^0.22.1",
"trim-newlines": "^4.0.2"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@parcel/transformer-sass": "^2.0.0-beta.2",
"babel-eslint": "^10.1.0",
"babel-preset-nano-react-app": "^0.1.0",
"eslint": "^7.22.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",
"gh-pages": "^3.1.0",
"parcel": "^2.0.0-beta.2",
"prettier": "^2.2.1",
"rimraf": "^3.0.2"
},
"babel": {
"presets": [
"nano-react-app"
]
}
}