forked from ksouf/dddeu22-let-me-be-free-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.73 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
{
"name": "dddeu22-let-me-be-free-typescript",
"version": "1.0.0",
"description": "DDD Europe 2022 workshop let me be free typescript edition",
"main": "index.js",
"scripts": {
"clean": "rimraf coverage dist",
"test": "jest --coverage",
"lint": "eslint \"src/**/*.{js,ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{js,ts,tsx}\" --fix",
"start": "ts-node src/index.ts",
"start:dev": "nodemon",
"build": "tsc",
"watch": "tsc --watch",
"watch:test": "jest --watch",
"dist": "yarn clean && yarn lint && yarn test && yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ksouf/dddeu22-let-me-be-free-typescript.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ksouf/dddeu22-let-me-be-free-typescript/issues"
},
"homepage": "https://github.com/ksouf/dddeu22-let-me-be-free-typescript#readme",
"devDependencies": {
"@swc/core": "^1.3.14",
"@swc/helpers": "^0.5.0",
"@swc/jest": "^0.2.23",
"@types/jest": "^29.2.3",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.0",
"rimraf": "^4.4.1",
"ts-node": "^10.8.0",
"typescript": "^4.9.3"
}
}