-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.3 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
{
"name": "listening-party",
"version": "1.0.0",
"description": "Listening Party",
"main": "index.ts",
"author": "Max Kurapov <[email protected]>",
"license": "MIT",
"dependencies": {
"@types/express": "^4.17.4",
"@types/mongoose": "^5.7.20",
"@types/node-cron": "^2.0.3",
"@types/socket.io": "^2.1.4",
"axios": "^0.19.2",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fs": "^0.0.1-security",
"mongoose": "^5.9.15",
"node-cron": "^2.0.3",
"nodemon": "^2.0.2",
"query-string": "^6.11.1",
"socket.io": "^2.3.0",
"typescript": "^3.8.3",
"uuid": "^7.0.3"
},
"scripts": {
"start": "NODE_ENV=dev node ./build/index.js",
"start:prod": "NODE_ENV=production node ./build/index.js",
"build": "npx tsc",
"build:dev": "npx tsc && yarn build:client:dev",
"build:client:dev": "cd client/ && yarn build:dev",
"build:client:prod": "cd client/ && yarn build:prod",
"watch": "NODE_ENV=dev nodemon --watch 'app/**/*' -e ts,tsx --exec 'ts-node' ./index.ts",
"heroku-build:client": "tsc & cd client/ && yarn install && yarn install --only=dev --no-shrinkwrap && yarn run build:prod",
"heroku-postbuild": "yarn heroku-build:client"
},
"devDependencies": {
"ts-node": "^8.8.2"
}
}