-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.8 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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "alpine-express",
"version": "1.0.0",
"description": "",
"type": "commonjs",
"main": "src/app.ts",
"scripts": {
"start": "npm run build && node build/app.js",
"build": "tsc && npm run scss-prod && npm run copy",
"copy": "node copy.js",
"scss-dev": "sass --update --style=expanded src/scss:src/public/styles",
"scss-prod": "sass --no-source-map --style=compressed src/scss:src/public/styles",
"postbuild": "node build/tools/build.js",
"dev": " npm run scss-prod & nodemon & ts-node ",
"test": "jasmine --config=jasmine.json",
"coverage": "nyc npm run test"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"**/*.spec.ts"
],
"reporter": [
"cobertura",
"lcov",
"clover"
],
"all": false
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts",
"stdout": true,
"exec": "ts-node src/app.ts"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jasmine": "^3.10.3",
"@types/node": "^17.0.17",
"nodemon": "^2.0.15",
"nyc": "^14.1.1",
"ts-node": "^10.5.0",
"tslint": "^6.1.3",
"typescript": "^4.5.5"
},
"dependencies": {
"@types/jsdom": "^16.2.14",
"@types/socket.io": "^3.0.2",
"astronomy-bundle": "^7.5.3",
"copyfiles": "^2.4.1",
"cors": "^2.8.5",
"express": "^4.17.2",
"express-validator": "^6.14.2",
"got": "^12.0.1",
"jasmine": "^4.0.2",
"jsdom": "^19.0.0",
"morgan": "^1.10.0",
"pug": "^3.0.2",
"rxjs": "~6.5.5",
"sass": "^1.49.7",
"sharp": "^0.31.0",
"shelljs": "^0.8.5",
"socket.io": "^4.5.1",
"swagger-jsdoc": "^6.2.1",
"swagger-ui-express": "^4.5.0",
"tsoa": "^3.14.1",
"ws": "^8.9.0"
}
}