forked from belay-labs/next-fullstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.11 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
{
"name": "next-fullstack",
"version": "0.1.0",
"private": true,
"scripts": {
"db:create": "sequelize-cli db:create",
"db:drop": "sequelize-cli db:drop",
"db:migrate": "sequelize-cli db:migrate",
"db:rollback": "sequelize-cli db:undo",
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"lodash": "^4.17.20",
"next": "9.5.3",
"next-auth": "^3.1.0",
"pg": "^8.3.3",
"pg-hstore": "^2.3.3",
"react": "16.13.1",
"react-dom": "16.13.1",
"sequelize": "^6.3.5",
"tailwindcss": "^1.8.10"
},
"devDependencies": {
"@types/lodash": "^4.14.161",
"@types/next-auth": "^3.1.4",
"@types/node": "^14.10.2",
"@types/react": "^16.9.49",
"@types/validator": "^13.1.0",
"dotenv": "^8.2.0",
"husky": ">=4",
"lint-staged": ">=10",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.1.2",
"sequelize-cli": "^6.2.0",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "yarn tsc && lint-staged"
}
},
"lint-staged": {
"*.{js,css,md,jsx,ts,tsx}": "prettier --write"
}
}