forked from Real-Dev-Squad/website-status
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.06 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
{
"name": "react-nextjs-scss-typescript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "rm -rf node_modules/.cache && next src",
"build": "next build src dist",
"start": "next start src",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@zeit/next-sass": "^1.0.1",
"@zeit/next-typescript": "^1.1.1",
"next": "^8.1.0",
"node-sass": "^4.12.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"ts-node": "^8.2.0",
"tslib": "^1.9.3",
"typescript": "^3.5.1"
},
"devDependencies": {
"@types/next": "^8.0.5",
"@types/node-sass": "^4.11.0",
"@types/react": "^16.8.20",
"@types/react-dom": "^16.8.4",
"@types/zeit__next-typescript": "^0.1.2",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"eslint": "^7.6.0",
"husky": "^4.2.5"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-and-fix"
}
}
}