-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.02 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
{
"name": "tip-calculator-2",
"version": "1.0.0",
"description": "",
"source": "src/index.html",
"scripts": {
"build": "parcel build src/index.html",
"predeploy": "rm -rf dist && parcel build src/index.html --no-source-maps --public-url ./",
"deploy": "gh-pages -d dist",
"start": "parcel",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint \"src/**/*.{ts,tsx}\" --quiet",
"format": "prettier --write --no-semi \"src/**/*.{ts,tsx}\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-typescript": "^1.0.10",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-typescript": "^0.14.0",
"parcel": "^2.7.0",
"prettier": "^2.7.1",
"process": "^0.11.10",
"typescript": "^4.7.4"
},
"dependencies": {
"gh-pages": "^4.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}