This repository has been archived by the owner on Nov 22, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·66 lines (66 loc) · 1.63 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
{
"private": true,
"description": "Headless Habbo CMS supporting all emulators",
"author": "Marcus S. Abildskov <marcussa2000@gmail.com>",
"license": "MIT",
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "yarn clean && lerna run build",
"prepare": "yarn clean && lerna run prepare",
"commit": "git-cz",
"clean": "rimraf packages/*/lib",
"precommit": "yarn test && pretty-quick --staged",
"pretty-quick": "pretty-quick",
"test": "jest"
},
"devDependencies": {
"@nestjs/testing": "^5.3.1",
"@types/express": "^4.0.39",
"@types/fs-extra": "^5.0.4",
"@types/inquirer": "^0.0.43",
"@types/jest": "^21.1.8",
"@types/node": "^10.9.2",
"@types/supertest": "^2.0.4",
"git-cz": "^1.7.1",
"husky": "^0.14.3",
"jest": "^23.6.0",
"lerna": "*",
"nodemon": "^1.14.1",
"prettier": "^1.11.1",
"pretty-quick": "^1.6.0",
"supertest": "^3.0.0",
"ts-jest": "^23.1.4",
"ts-loader": "^4.1.0",
"ts-node": "^4.1.0",
"tsconfig-paths": "^3.1.1",
"typescript": "^3.0.3"
},
"workspaces": [
"packages/*"
],
"jest": {
"moduleNameMapper": {
"@vulture/(.*)": "<rootDir>/packages/$1/src"
},
"moduleFileExtensions": [
"js",
"jsx",
"ts",
"tsx",
"json",
"node"
],
"collectCoverage": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"testMatch": [
"<rootDir>/packages/*/__tests__/**/*.(spec|test).+(ts|tsx)"
]
}
}