forked from aobphilos/code-challenges
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "code-challenges",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint --fix .",
"build": "tsc -p tsconfig.json",
"test": "jest -c jest.config.js",
"dev": "ts-node",
"start": "pnpm build && node",
"challenge": "pnpm start ./case-1/solutions/dummy.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"flat": "^5.0.2",
"fs-extra": "^10.1.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/flat": "^5.0.2",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^28.1.6",
"@types/lodash": "^4.14.182",
"@types/node": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^28.1.3",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}