-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.05 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
{
"name": "bdrec",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"watch":"tsc --noEmit --watch",
"build": "next build",
"start": "next start",
"lint": "next lint",
"preexport": "next build",
"export": "next export",
"predeploy": "npm run export",
"deploy": "gh-pages -d out/ -t"
},
"dependencies": {
"bootstrap": "^5.1.1",
"idb": "^6.1.3",
"next": "^11.1.2",
"next-pwa": "^5.3.1",
"react": "^17.0.2",
"react-bootstrap": "^1.6.3",
"react-dom": "^17.0.2",
"recharts": "^2.1.3",
"sass": "^1.41.1",
"swr": "^1.0.1"
},
"prettier": {
"tabWidth": 4,
"arrowParens": "always",
"semi": true,
"singleQuote": true,
"printWidth": 120
},
"devDependencies": {
"@types/react": "17.0.21",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"gh-pages": "^3.2.3",
"typescript": "4.4.3"
}
}