-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.48 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
{
"name": "cwd-rsvp",
"version": "0.1.3",
"description": "",
"main": "index.js",
"devDependencies": {
"@svgr/rollup": "^3.1.0",
"@types/compression": "^1.7.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.10",
"@types/cron": "^1.7.3",
"@types/express": "^4.17.8",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose-autopopulate": "^0.10.1",
"@types/morgan": "^1.9.2",
"@types/node": "^15.0.2",
"@types/node-schedule": "^1.3.1",
"@types/nodemailer": "^6.4.4",
"@types/passport": "^1.0.6",
"@types/passport-google-oauth": "^1.0.41",
"@types/passport-jwt": "^3.0.5",
"@types/react": "^17.0.0",
"@types/react-date-range": "^1.1.4",
"@types/react-dom": "^17.0.0",
"@types/react-modal": "^3.12.0",
"@types/react-router-dom": "^5.1.7",
"@types/redux-logger": "^3.0.8",
"@types/styled-components": "^5.1.9",
"@types/uuid": "^8.3.0",
"@types/validator": "^13.1.3",
"@types/web-push": "^3.3.0",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"@vitejs/plugin-react-refresh": "^1.3.1",
"concurrently": "^6.0.2",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.23.2",
"kill-port": "^1.6.1",
"less": "^4.1.1",
"nodemon": "^2.0.4",
"prettier": "2.3.1",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-visualizer": "^5.5.0",
"ts-node": "^8.10.2",
"ts-node-dev": "^1.1.6",
"typescript": "^4.1.2",
"vite": "^2.5.0",
"vite-plugin-svgr": "^0.2.0",
"vite-tsconfig-paths": "^3.3.10"
},
"scripts": {
"start": "node server/build/app.js",
"build": "npm run build:client && npm run build:server",
"build:client": "cd client && npm run build && cd ..",
"build:server": "cd server && npm run build && cd ..",
"postinstall": "npm run install:client && npm run install:server",
"install:client": "cd client && npm install && cd ..",
"install:server": "cd server && npm install && cd ..",
"dev": "concurrently \"npm run dev:client\" \"npm run dev:server\"",
"dev:client": "cd client && npm run dev && cd ..",
"dev:server": "cd server && npm run dev && cd ..",
"lint": "eslint . --ext .ts --ext .tsx --fix"
},
"author": "",
"engines": {
"node": "17.0.1",
"npm": "8.1.0"
}
}