-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·54 lines (54 loc) · 1.76 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
{
"name": "enucs",
"version": "1.0.0",
"description": "Website for ENUCS",
"main": "app.js",
"scripts": {
"start": "npm run serve",
"build": "npm run build-sass && npm run build-ts",
"serve": "node app.js",
"watch-node": "nodemon app.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"Sass,TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-sass\" \"npm run watch-ts\" \"npm run watch-node\"",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"build-sass": "node-sass public/css/style.scss public/css/style.css",
"watch-sass": "node-sass -w public/css/style.scss public/css/style.css",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect app.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"Sass,TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-sass\" \"npm run watch-ts\" \"npm run serve-debug\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/MrRa1n/enucs.git"
},
"author": "Toby Cook",
"license": "ISC",
"bugs": {
"url": "https://github.com/MrRa1n/enucs/issues"
},
"homepage": "https://github.com/MrRa1n/enucs#readme",
"dependencies": {
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"cookie": "^0.4.0",
"crypto-random-string": "^2.0.0",
"express": "^4.17.1",
"log4js": "^6.3.0",
"multer": "^1.4.2",
"pg": "^8.3.2",
"pug": "^3.0.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie": "^0.4.0",
"@types/express": "^4.17.7",
"@types/morgan": "^1.9.1",
"@types/node": "^14.6.0",
"@types/pg": "^7.14.4",
"concurrently": "^5.3.0",
"morgan": "^1.10.0",
"node-sass": "^6.0.0",
"nodemon": "^2.0.4",
"typescript": "^4.0.2"
}
}