-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.53 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": "rolo-so-saasy",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint --ext .js,.ts .",
"format": "prettier --write \"**/*.+(ts|tsx)\"",
"server": "NODE_TLS_REJECT_UNAUTHORIZED=0 tsc-watch -p server --onCompilationComplete \"node -r dotenv/config dist/server.js\"",
"start": "npm run dev & npm run server"
},
"dependencies": {
"@cord-sdk/api-types": "^1.1.0",
"@cord-sdk/react": "^1.1.0",
"@cord-sdk/server": "^1.1.0",
"@cord-sdk/types": "^1.1.0",
"@slack/web-api": "^6.8.1",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"envfile": "^6.18.0",
"express": "^4.18.2",
"fast-json-stable-stringify": "^2.1.0",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"node-fetch": "^2.6.9",
"qs": "^6.11.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"slack-markdown": "^0.3.0",
"uuid": "^9.0.0",
"vite-plugin-mkcert": "^1.14.0"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/lodash": "^4.14.192",
"@types/node-fetch": "^2.6.3",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-react": "^3.1.0",
"tsc-watch": "^6.0.0",
"typescript": "^4.9.3",
"vite": "^4.2.0"
}
}