-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.57 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
50
51
{
"name": "final-countdown",
"private": true,
"version": "0.1.0",
"scripts": {
"dev": "cross-env NODE_OPTIONS='--inspect' next dev -p 30000",
"build": "next build",
"start": "next start",
"export": "next build && next export -o build",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,scss,sass,html,yaml}\"",
"lint": "eslint **/*.{js,jsx,ts,tsx}",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,sass,htm,yaml}": "prettier --write"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/free-regular-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"axios": "^0.21.2",
"bootswatch": "^4.6.0",
"luxon": "^1.28.1",
"next": "latest",
"next-pwa": "^5.2.16",
"react": "^17.0.2",
"react-bootstrap": "^1.5.2",
"react-dom": "^17.0.2",
"swr": "^0.5.5"
},
"devDependencies": {
"@types/luxon": "^1.26.5",
"@types/node": "^15.0.1",
"@types/react": "^17.0.4",
"@types/react-dom": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"cross-env": "^7.0.3",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"typescript": "^4.2.4"
}
}