-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathpackage.json
65 lines (65 loc) · 2.47 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
{
"name": "music-pwa",
"version": "1.0.0",
"description": "listen to the musics",
"main": "server.js",
"repository": "https://github.com/bundit/kord-app.git",
"author": "Bundit Hongmanee <[email protected]>",
"engines": {
"node": "^18.16.0"
},
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"eslint-config-airbnb": "^18.0.1",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"node-fetch": "^2.6.7",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.0",
"passport-mixcloud": "^0.0.2",
"passport-oauth2-refresh": "^2.2.0",
"passport-spotify": "^2.0.0",
"pg": "^8.11.2",
"puppeteer": "^21.0.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.17",
"@types/lodash": "^4.14.196",
"@types/morgan": "^1.9.4",
"@types/node": "^20.4.4",
"@types/node-fetch": "^2.6.4",
"@types/passport": "^1.0.12",
"@types/passport-google-oauth20": "^2.0.11",
"@types/passport-jwt": "^3.0.9",
"@types/passport-oauth2-refresh": "^1.1.1",
"@types/passport-spotify": "^2.0.1",
"@types/pg": "^8.10.2",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"concurrently": "^5.1.0",
"dotenv": "^8.2.0",
"eslint": "^8.46.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.1",
"nodemon": "^2.0.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"scripts": {
"start": "node_modules/ts-node/dist/bin.js --transpileOnly server.ts",
"dev": "node_modules/.bin/concurrently --handle-input \"nodemon -r dotenv/config server.ts\" \"cd client && yarn typed-scss-modules src --watch && yarn start\" \"cd landing && yarn start\"",
"dev-app": "node_modules/.bin/concurrently --handle-input \"nodemon -r dotenv/config server.ts\" \"cd client && yarn typed-scss-modules src --watch\" \"cd client && yarn start\"",
"heroku-postbuild": "yarn run puppeteer-cache && ./node_modules/typescript/bin/tsc && cd client && yarn && yarn typed-scss-modules src && yarn run build && cd ../landing && yarn && yarn run build",
"puppeteer-cache": "mkdir ./.cache && mv /app/.cache/puppeteer ./.cache"
}
}