This repository has been archived by the owner on May 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
156 lines (156 loc) · 5.2 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"name": "hds",
"version": "1.0.0",
"private": true,
"description": "backend for mock design company",
"license": "ISC",
"main": "data/index.ts",
"scripts": {
"prebuild": "npm run clean:dist",
"build": "next build",
"clean:dist": "rm -rf .next",
"predev": "npm run clean:dist",
"dev": "next",
"lint": "tsc --noEmit && eslint src --ext .ts,.tsx",
"prisma:generate": "prisma generate",
"prisma:init": "prisma migrate save --name 'init' --experimental && prisma migrate up --experimental --verbose && prisma generate",
"prisma:introspect": "prisma introspect",
"prisma:migrate": "npm run prisma:migrate-save && npm run prisma:migrate-up && npm run prisma:generate",
"prisma:migrate-save": "prisma migrate save --experimental",
"prisma:migrate-up": "prisma migrate up --experimental --verbose",
"prisma:preview": "prisma migrate save --experimental --preview",
"prisma:studio": "prisma studio --experimental",
"production": "npm run build && npm run start",
"seed": "npm run seed:build && npm run seed:run",
"seed:build": "webpack --config ./data/webpack.config.js",
"seed:run": "node ./.dist/main.js",
"start": "next start",
"test": "snyk test"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && lint-staged",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@date-io/core": "^1.3.13",
"@date-io/date-fns": "^1.3.13",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@material-ui/pickers": "^3.2.10",
"@prisma/client": "^2.3.0",
"@sendgrid/mail": "^7.2.2",
"axios": "^0.19.2",
"clsx": "^1.1.1",
"cookie": "^0.4.1",
"date-fns": "^2.15.0",
"dotenv": "^8.2.0",
"framer-motion": "^1.11.1",
"immer": "^7.0.7",
"isomorphic-unfetch": "^3.0.0",
"jsonwebtoken": "^8.5.1",
"lodash.debounce": "^4.0.8",
"lodash.merge": "^4.6.2",
"lodash.some": "^4.6.0",
"lodash.throttle": "^4.1.1",
"material-table": "1.62",
"ms": "^2.1.2",
"next": "^9.5.1",
"nookies": "^2.3.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hook-form": "6.0.0",
"react-redux": "^7.2.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"swr": "0.2.3",
"urbit-ob": "^5.0.1",
"uuid": "^7.0.3"
},
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-async-to-generator": "^7.10.4",
"@babel/plugin-transform-react-jsx": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/plugin-transform-typescript": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@babel/register": "^7.10.5",
"@babel/runtime": "^7.11.0",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@prisma/cli": "^2.3.0",
"@types/cookie": "^0.3.3",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash.debounce": "^4.0.6",
"@types/lodash.merge": "^4.6.6",
"@types/lodash.some": "^4.6.6",
"@types/lodash.throttle": "^4.1.6",
"@types/ms": "^0.7.31",
"@types/node": "^13.13.15",
"@types/react": "^16.9.44",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.9",
"@types/uuid": "^7.0.4",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-import": "^1.13.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"body-parser": "^1.19.0",
"commitizen": "^4.1.2",
"confusing-browser-globals": "^1.0.9",
"core-js": "^3.6.5",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-prettier-standard": "^3.0.1",
"eslint-config-standard": "^14.1.1",
"eslint-import-resolver-typescript": "^2.2.0",
"eslint-loader": "^3.0.4",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^2.5.0",
"eslint-plugin-standard": "^4.0.1",
"esm": "^3.2.25",
"file-loader": "^6.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"prettier-config-standard": "^1.0.1",
"redux-devtools-extension": "^2.13.8",
"sass": "^1.26.10",
"snyk": "^1.369.2",
"svgo": "^1.3.2",
"svgo-loader": "^2.2.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.7",
"url-loader": "^4.1.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^1.7.2"
}
}