-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 2.17 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
{
"name": "de-slimste-mens",
"author": "Julian van der Horst",
"license": "MIT",
"version": "1.0.0",
"scripts": {
"dev": "NODE_ENV=development ts-node --project tsconfig.server.json server.ts",
"build:server": "tsc --project tsconfig.server.json",
"build:next": "next build",
"build": "npm run build:next && npm run build:server",
"start": "NODE_ENV=production node dist/index.js"
},
"lint-staged": {
"*.@(ts|tsx)": [
"yarn lint",
"yarn format"
]
},
"dependencies": {
"@emotion/babel-preset-css-prop": "^11.2.0",
"@emotion/react": "^11.1.5",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@tailwindcss/forms": "^0.2.1",
"@tailwindcss/jit": "^0.1.7",
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.11",
"@types/next-auth": "^3.1.24",
"@types/pg": "^7.14.10",
"@types/socket.io": "^2.1.13",
"@zeit/next-css": "^1.0.1",
"autoprefixer": "^10.2.4",
"babel-plugin-transform-postcss": "^0.3.0",
"bcrypt": "^5.0.0",
"express": "^4.17.1",
"material-table": "^1.69.2",
"next": "^10.0.7",
"next-auth": "^3.4.1",
"next-images": "^1.7.0",
"node": "^15.8.0",
"pg": "^8.5.1",
"pg-promise": "^10.9.2",
"postcss": "^8.2.6",
"postcss-preset-env": "^6.7.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-spinners": "^0.10.6",
"socket.io": "^4.0.0",
"socket.io-client": "^3.1.1",
"socketio": "^1.0.0",
"tailwindcss": "^2.0.3",
"ts-node": "^9.1.1"
},
"devDependencies": {
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.25",
"@types/react": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"babel-jest": "^26.6.3",
"babel-plugin-inline-react-svg": "^1.1.2",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.2.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-watch-typeahead": "^0.6.1",
"lint-staged": "^10.0.10",
"nodemon": "^2.0.7",
"prettier": "^2.0.2",
"typescript": "^4.1.3"
}
}