-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
50 lines (50 loc) · 1.28 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
44
45
46
47
48
49
50
{
"name": "toadua",
"version": "1.0.0",
"description": "A collaborative dictionary for the Toaq language.",
"main": "core/server.js",
"type": "module",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"argparse": "2.0.1",
"bcryptjs": "^2.4.3",
"color-convert": "^2.0.1",
"js-yaml": "^4.1.0",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"shortid": "^2.2.16",
"tinyqueue": "^2.0.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/argparse": "^2.0.10",
"@types/bcryptjs": "^2.4.2",
"@types/node": "^20.14.10",
"@types/request-promise-native": "^1.0.18",
"@types/shortid": "^0.0.29",
"@types/uuid": "^9.0.0",
"husky": "^8.0.0",
"prettier": "^3.0.3",
"typescript": "^5.2.0",
"vite": "^5.3.3",
"vitest": "^2.0.3"
},
"scripts": {
"prepare": "husky install",
"build": "npx -p typescript tsc --build",
"start": "trap 'test $! && kill $!' SIGINT SIGTERM SIGHUP; node ./dist/core/server.js",
"check": "npm run prettier:check",
"test": "npx vitest",
"prettier:check": "npx -p prettier prettier -c .",
"prettier:format": "npx -p prettier prettier -w ."
},
"repository": {
"type": "git",
"url": "https://github.com/toaq/toadua.git"
},
"author": "uakci on behalf of the Toaq Coders Group",
"license": "MIT",
"private": true
}