-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
42 lines (42 loc) · 1.15 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
{
"name": "@iconify/api",
"description": "Iconify API",
"author": "Vjacheslav Trushkin",
"license": "MIT",
"version": "3.1.0",
"type": "module",
"bugs": "https://github.com/iconify/api/issues",
"homepage": "https://github.com/iconify/api",
"repository": {
"type": "git",
"url": "https://github.com/iconify/api.git"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16.15.0"
},
"scripts": {
"build": "tsc -b",
"test": "vitest --config vitest.config.mjs",
"start": "node --expose-gc lib/index.js",
"docker:build": "./docker.sh",
"docker:start": "docker run -d -p 3000:3000 iconify/api",
"docker:stop": "docker ps -q --filter ancestor=iconify/api | xargs -r docker stop",
"docker:cleanup": "docker ps -q -a --filter ancestor=iconify/api | xargs -r docker rm",
"docker:publish": "docker push iconify/api"
},
"dependencies": {
"@fastify/formbody": "^7.4.0",
"@iconify/tools": "^4.0.4",
"@iconify/types": "^2.0.0",
"@iconify/utils": "^2.1.23",
"dotenv": "^16.4.5",
"fastify": "^4.26.2"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"typescript": "^5.4.5",
"vitest": "^1.5.2"
}
}