-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 900 Bytes
/
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
{
"name": "typescript-design-pattern",
"version": "1.0.0",
"description": "Design pattern with Typescript",
"main": "index.js",
"repository": "https://github.com/qvil/typescript-design-pattern.git",
"author": "qvil <[email protected]>",
"license": "MIT",
"scripts": {
"start": "tsc-watch --onSuccess \"node dist/index.js\"",
"start:abstract-factory": "tsc-watch --onSuccess \"node dist/index.js\"",
"test": "jest --watch"
},
"dependencies": {
"tsc-watch": "^1.0.21"
},
"devDependencies": {
"@types/jest": "^23.1.4",
"jest": "^23.3.0",
"ts-jest": "^23.0.0",
"typescript": "^3.2.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}