-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.44 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
{
"name": "app",
"version": "0.0.0",
"license": "UNLICENSED",
"browserslist": [
"since 2017-06"
],
"scripts": {
"test": "npx jest",
"watch": "npx jest --watch",
"lint": "npx eslint --ext js,jsx,ts,tsx src",
"dev": "npx parcel index.html",
"clean": "rm -frd .cache",
"build": "NODE_ENV=production npx parcel build index.html -d build/ --public-url '/'",
"coverage": "npx jest --collect-coverage",
"start": "npx serve --single build",
"build-local": "NODE_ENV=production npx parcel build index.html -d build-local/ --public-url './'",
"start-local": "npx serve --single build-local"
},
"devDependencies": {
"@parcel/transformer-svg-react": "^2.6.2",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/jest": "^28.1.4",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/react-helmet": "^6.1.5",
"autoprefixer": "^10.4.7",
"dotenv": "^16.0.1",
"eslint": "^8.19.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.2",
"parcel": "^2.6.2",
"postcss": "^8.4.14",
"process": "^0.11.10",
"tailwindcss": "^3.1.4",
"ts-jest": "^28.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-router-dom": "^6.3.0",
"react-toastify": "^9.0.5"
}
}