-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.34 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.34 KB
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
{
"name": "codewar-scripts",
"version": "1.0.1",
"description": "Various scripts for saving data from your Codewars account",
"main": "./dist/index.js",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"download-solutions": "node dist/download-solutions.js",
"format-solutions": "node dist/format-solutions.js",
"download-clan-stats": "node dist/download-clan-stats.js",
"fetch-credentials": "node dist/fetch-credentials.js",
"estimate-honor-and-score": "node dist/estimate-honor-and-score.js",
"list-unrated-katas": "node dist/list-unrated-katas.js",
"rate-katas": "node dist/rate-katas.js",
"build": "tsc",
"postinstall": "tsc",
"test": "jest -i src"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^3.15.2",
"@types/jsdom": "^16.2.14",
"@types/node-fetch": "^3.0.3",
"dotenv": "^16.0.0",
"jsdom": "^19.0.0",
"node-fetch": "^2.6.7",
"prisma": "^3.15.2",
"simple-git": "^3.4.0",
"typescript": "^4.5.5"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/mongodb-memory-server": "^2.3.0",
"jest": "^28.1.3",
"mongodb-memory-server": "^8.7.2",
"ts-jest": "^28.0.7",
"ts-node": "^10.8.1"
},
"optionalDependencies": {
"playwright": "^1.18.1"
}
}