-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"name": "adventofcode-typescript-starter",
"version": "1.0.0",
"description": "https://adventofcode.com/",
"main": "src/index.ts",
"scripts": {
"build": "rimraf ./build && tsc",
"test": "jest",
"setup": "node src/setup.js",
"start": "npm run build && node build/index.js"
},
"author": "Loris Bognanni",
"license": "ISC",
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^24.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.6",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"jest": {
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "./src/.*\\.(test|spec)?\\.(ts|ts)$",
"moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json", "node"],
"roots": [
"<rootDir>/src"
]
}
}