-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 871 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
38
39
{
"name": "aoc-monorepo",
"workspaces": [
"2020/*",
"2021/*"
],
"private": true,
"scripts": {
"bootstrap": "npx lerna bootstrap"
},
"dependencies": {
"lodash": "^4.17.21",
"ts-pattern": "^3.3.3"
},
"devDependencies": {
"@types/jest": "~27.0.1",
"@types/lodash": "^4.14.175",
"@types/node": "~14.14.45",
"@typescript-eslint/eslint-plugin": "~4.31.1",
"@typescript-eslint/parser": "~4.31.1",
"copyfiles": "^2.4.1",
"eslint": "~7.32.0",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-jest": "~24.4.2",
"jest": "~27.2.0",
"prettier": "~2.4.1",
"rimraf": "~3.0.2",
"ts-jest": "~27.0.5",
"tslib": "~2.3.1",
"tsutils": "~3.21.0",
"typescript": "~4.4.3"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
}
}