-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.49 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
{
"name": "youtube-node",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "npm-run-all --continue-on-error build:*",
"build:css": "sass scss/:dist/css/",
"build:js": "tsc",
"init_db": "node dist/scripts/init_db",
"start": "node --enable-source-maps dist/bin/www",
"watch": "npm-run-all --silent --parallel watch:*",
"watch:css": "nodemon --quiet --ext scss --exec 'npm run build:css || exit 1'",
"watch:js": "nodemon --quiet --ext ts --exec 'npm run build:js || exit 1'",
"watch:node": "nodemon --delay 1"
},
"dependencies": {
"bootstrap": "^5.2.3",
"cookie-parser": "~1.4.6",
"debug": "~4.3.4",
"dotenv": "^16.0.3",
"express": "~4.19.2",
"http-errors": "~2.0.0",
"moment": "^2.29.4",
"morgan": "~1.10.0",
"pg": "^8.11.3",
"pug": "^3.0.2",
"sequelize": "^6.29.0"
},
"devDependencies": {
"@prettier/plugin-pug": "^3.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.14",
"@types/http-errors": "^2.0.1",
"@types/morgan": "^1.9.3",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"prettier": "3.2.5",
"sass": "^1.56.1",
"typescript": "^4.9.3"
}
}