-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·52 lines (52 loc) · 1.29 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
{
"name": "symptoms-tracker",
"version": "0.0.1",
"author": "Alexis Thual",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js"
},
"dependencies": {
"@now/node": "^1.5.0",
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"babel-plugin-import": "^1.9.1",
"isomorphic-unfetch": "^3.0.0",
"js-cookie": "^2.2.1",
"next": "^9.3.3",
"next-cookies": "^2.0.3",
"node-sass": "^4.13.1",
"null-loader": "2.0.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-intl": "^4.2.2",
"react-share": "^4.1.0",
"reflect-metadata": "^0.1.13",
"serverless-pg": "^0.1.1",
"spectre.css": "^0.5.8",
"sql-template-strings": "^2.2.2",
"sqlite-async": "^1.0.12",
"sqlite3": "^4.1.1",
"svg-captcha": "^1.4.0",
"swr": "^0.2.0",
"typeorm": "^0.2.24"
},
"license": "MIT",
"devDependencies": {
"@types/js-cookie": "^2.2.5",
"@types/node": "^13.5.0",
"@types/react": "^16.9.19",
"husky": "^4.2.3",
"prettier": "1.19.1",
"pretty-quick": "^2.0.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.7.5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}