-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 809 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 809 Bytes
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
{
"name": "airsoft_database",
"version": "1.0.0",
"description": "Airsoft Database for Airsoft Spotter",
"main": "index.ts",
"scripts": {
"test": "jest",
"test-debug": "jest --silent=false",
"test-database": "npx ts-node src/index.ts -t",
"create-database": "sh ./scripts/create-database.sh"
},
"keywords": [
"Airsoft"
],
"author": "Takeshi Inoue",
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.24",
"jest": "^30.3.0",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.2",
"typescript": "^6.0.2"
},
"dependencies": {
"@types/better-sqlite3": "^7.6.13",
"better-sqlite3": "^12.8.0",
"commander": "^14.0.3",
"csv-parse": "^6.2.1",
"lodash": "^4.18.1",
"realm": "^20.2.0"
}
}