-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.22 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
{
"name": "adv",
"version": "1.0.0",
"description": "The Spotify search you don't need and never wanted",
"main": "build/app.js",
"engines": {
"node": "12.2.0",
"npm": "6.9.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc",
"dev": "ts-node-dev --respawn --transpileOnly ./app/app.ts",
"public": "rm -rf ./build/public && cp -R ./app/public/ ./build/public/",
"views": "cp -R ./app/views/ ./build/views/",
"models" : "./dlmodels.sh",
"postinstall": "tsc && npm run public && npm run views && npm run models",
"start": "node build/app.js",
"prod": "npm run postinstall && npm run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/csteinmetz1/adv.git"
},
"author": "Christian Steinmetz",
"license": "ISC",
"bugs": {
"url": "https://github.com/csteinmetz1/adv/issues"
},
"homepage": "https://github.com/csteinmetz1/adv#readme",
"dependencies": {
"@types/ejs": "^2.6.3",
"@types/express": "^4.17.0",
"@types/request": "^2.48.2",
"dotenv": "^8.1.0",
"ejs": "^2.6.2",
"express": "^4.17.1",
"request": "^2.88.0",
"ts-node-dev": "^1.0.0-pre.40",
"typescript": "^3.5.3"
}
}