-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.32 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
{
"name": "youtarr",
"version": "1.17.17",
"description": "",
"main": "server/index.js",
"scripts": {
"start": "node server/server.js",
"start:dev": "nodemon server/server.js",
"client": "cd client && npm start",
"start:db": "bash ./scripts/start-dev-dbonly.sh",
"dev": "concurrently --kill-others \"npm run start:dev\" \"npm run client\"",
"lint": "eslint ./client/src/. --ext .ts,.tsx && eslint ./server/. --ext .js",
"lint-staged": "lint-staged",
"prepare": "husky install"
},
"lint-staged": {
"./client/src/*.{ts,tsx},./server/*.js": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"concurrently": "^6.5.1",
"eslint": "^8.41.0",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"nodemon": "^2.0.15"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.4.0",
"express": "^4.18.2",
"fs-extra": "^11.1.1",
"googleapis": "^118.0.0",
"iso8601-duration": "^2.1.1",
"mysql2": "^3.9.4",
"node-cron": "^3.0.2",
"sequelize": "^6.31.1",
"sequelize-cli": "^6.6.0",
"uuid": "^9.0.0",
"ws": "^8.13.0"
}
}