-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 884 Bytes
/
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
{
"name": "fan-art-slideshow",
"version": "1.0.0",
"main": "build/app.js",
"author": "megalon",
"license": "MIT",
"scripts": {
"dev": "tsc-watch --onFailure \"echo Compilation Failed\"",
"build": "tsc && yarn copy",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"copy": "yarn copy-pug && yarn copy-css",
"copy-pug": "cd \"src/views\" && copyfiles -V \"*.pug\" ../../build/views/",
"copy-css": "cd \"src/public/stylesheets\" && copyfiles -V \"*.css\" ../../../build/public/stylesheets/"
},
"dependencies": {
"@types/node-fetch": "^2.5.8",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"node-fetch": "^2.6.1",
"pug": "^3.0.2"
},
"devDependencies": {
"@types/express": "^4.17.11",
"copyfiles": "^2.4.1",
"nodemon": "^2.0.7",
"tsc-watch": "^4.2.9",
"typescript": "^4.2.3"
}
}