-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
66 lines (66 loc) · 1.88 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
{
"name": "together-app",
"version": "1.0.0",
"private": false,
"engines": {
"node": "16.14.0"
},
"scripts": {
"dev": "next dev",
"build": "next build && npm run build-jobs",
"build-jobs": "tsc -p ./tsconfig-jobs.json",
"start": "next start -p $PORT",
"lint": "next lint",
"postinstall": "prisma generate && npm run build",
"migrate:local": "npx prisma migrate dev",
"migrate:production": "npx prisma migrate deploy",
"initialize": "node jobs-dist/initialize.js",
"sync": "node jobs-dist/sync.js",
"notify": "node jobs-dist/notify.js",
"remind": "node jobs-dist/remind.js",
"request": "node jobs-dist/request.js"
},
"dependencies": {
"@macpaw/macpaw-ui": "^3.9.6",
"@prisma/client": "^3.10.0",
"@slack/bolt": "^3.10.0",
"@slack/events-api": "^3.0.1",
"@slack/web-api": "^6.7.0",
"async-csv": "^2.1.3",
"axios": "^0.26.0",
"date-fns": "^2.28.0",
"dotenv": "^16.0.0",
"lodash.debounce": "^4.0.8",
"mapbox-gl": "^2.7.0",
"micro": "^9.3.4",
"next": "12.1.0",
"next-auth": "^4.2.1",
"next-transpile-modules": "^9.0.0",
"node-cache": "^5.1.2",
"prisma": "^3.10.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-google-places-autocomplete": "^3.3.4",
"react-transition-group": "^4.4.2",
"sass": "^1.49.9",
"slack-block-builder": "^2.5.0",
"ts-node": "^10.7.0",
"tsscmp": "^1.0.6",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/async-csv": "^2.1.1",
"@types/express": "^4.17.13",
"@types/geojson": "^7946.0.8",
"@types/lodash.debounce": "^4.0.6",
"@types/mapbox-gl": "^2.6.3",
"@types/micro": "^7.3.7",
"@types/node": "^17.0.21",
"@types/react": "17.0.39",
"@types/tsscmp": "^1.0.0",
"@types/uuid": "^8.3.4",
"eslint": "8.10.0",
"eslint-config-next": "12.1.0",
"typescript": "^4.6.2"
}
}