This repository was archived by the owner on Jul 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.23 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.23 KB
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
{
"name": "mono-stack",
"version": "0.0.1",
"description": "DockerLAMP mono repo",
"repository": "git@github.com:dockerlamp/mono-stack.git",
"license": "MIT",
"dependencies": {
"connect-redis": "^3.3.3",
"express": "^4.16.3",
"express-session": "^1.15.6",
"ioredis": "^3.2.2",
"lodash": "^4.17.10",
"mongoose": "^5.0.16",
"morgan": "^1.9.0",
"passport": "^0.4.0",
"passport-github": "^1.1.0",
"rc": "^1.2.6",
"uuid": "^3.2.1",
"typedi": "^0.7.2",
"reflect-metadata": "^0.1.12",
"winston":"^2.4.2"
},
"devDependencies": {
"@types/express": "^4.11.1",
"@types/express-session": "^1.15.8",
"@types/rc":"^0.0.1",
"@types/passport": "^0.4.3",
"@types/passport-github": "^1.1.2",
"@types/mongoose": "^5.0.7",
"@types/morgan": "^1.7.35",
"@types/lodash": "^4.14.105",
"@types/uuid": "^3.4.3",
"@types/jest": "^22.2.0",
"@types/supertest": "^2.0.4",
"@types/connect-redis": "^0.0.7",
"@types/ioredis": "^3.2.7",
"typescript": "^2.8.3",
"tslint": "^5.9.1",
"tslint-eslint-rules": "^5.1.0",
"nodemon": "^1.17.3",
"rimraf": "^2.6.2",
"copyfiles": "^1.2.0",
"jest": "^22.4.3",
"ts-jest":"^22.4.4",
"supertest": "^3.0.0"
},
"scripts": {
"build": "yarn run clean & yarn run copy-json & yarn run tsc | tee compile.log",
"copy-json": "yarn run copyfiles --up 1 ./src/**/*.json ./build/src",
"clean": "yarn run --silent rimraf ./build/*",
"watch": "yarn run tsc -w | tee compile.log",
"lint": "yarn run --silent tslint ./src/**/*.ts ./test/**/*.ts",
"test": "yarn run test-unit",
"test-unit": "yarn run jest -c ./jest/config.unit.js",
"test-integration": "yarn run jest -c ./jest/config.integration.js --runInBand --forceExit",
"test-all": "yarn run jest -c ./jest/config.all.js --runInBand --forceExit",
"test-all-coverage": "yarn run test-all --coverage --coverageReporters=lcov --silent",
"start-front": "node build/src/front/front.js",
"dev-front": "yarn run nodemon -L --delay 2 --watch compile.log build/src/front/front.js",
"host-dev-front": "yarn run nodemon --delay 2 --watch ./build/ build/src/front/front.js"
}
}