-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
63 lines (63 loc) · 2.03 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
{
"author": "Société Générale Forge",
"dependencies": {
"faker": "^5.5.3",
"@nestjs/graphql": "9.1.2",
"class-validator": "^0.13.2",
"graphql": "^15.8.0",
"typeorm": "^0.2.41"
},
"description": "CAST Models",
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.12",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"chai": "^4.3.4",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-import-helpers": "^1.2.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "7.0.4",
"lint-staged": "^12.1.2",
"mocha": "^8.4.0",
"mocha-junit-reporter": "^2.0.2",
"mocha-multi-reporters": "^1.5.1",
"mocha-sonarqube-reporter": "^1.0.2",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"sonarqube-scanner": "^2.8.1",
"ts-mocha": "^8.0.0",
"typescript": "^4.5.3"
},
"gitHead": "16d20000bf482080929fefb83e0dfd5de292a9c9",
"license": "SEE LICENSE IN LICENSE",
"main": "dist/index.js",
"name": "@castframework/models",
"scripts": {
"build": "npm run clean && npm run compile",
"build:link": "npm run build && cd dist && npm link",
"clean": "rm -rf dist/* && rm -rf tsconfig.tsbuildinfo",
"compile": "$(npm bin)/tsc -b",
"lint": "eslint --ignore-path .gitignore --ext ts .",
"lint:fix": "eslint --fix --ignore-path .gitignore --ext ts .",
"prepublishOnly": "npm run build",
"sonar": "$(npm bin)/sonar-scanner",
"stats": "nyc npm run test",
"pre-commit": "lint-staged --verbose"
},
"lint-staged": {
"*.ts": "eslint --ignore-path .gitignore --quiet"
},
"types": "dist/index.d.ts",
"version": "0.8.4"
}