-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.49 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": "@warpstore/warpstore-package",
"version": "3.1.7",
"description": "",
"main": "dist/src/main.js",
"types": "dist/src/main.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Warp-Store/warpstore-package"
},
"homepage": "https://warpstore.app",
"scripts": {
"prebuild": "rimraf dist",
"build": "ttsc",
"build:w": "ttsc -w",
"dev": "ts-node-dev -r tsconfig-paths/register --respawn --poll --inspect --exit-child ./src/index.ts",
"test:unit": "npx tsc --noEmit && npm run test:skipchecks -- --config jest.config.ts",
"test:integration": "npx tsc --noEmit && npm run test:skipchecks -- --config jest.config.integration.ts",
"test:integration:skipchecks": "jest --watch --no-cache --runInBand --config jest.config.integration.ts",
"test:skipchecks": "jest --passWithNoTests --watch --no-cache --runInBand"
},
"author": "Rabbit",
"license": "ISC",
"devDependencies": {
"@swc/core": "^1.3.55",
"@swc/jest": "^0.2.26",
"@types/dotenv": "^8.2.0",
"@types/node": "^18.18.12",
"dotenv": "^16.3.1",
"jest": "^29.5.0",
"rimraf": "^5.0.1",
"ttypescript": "^1.5.15",
"typescript": "^4.4.4",
"typescript-transform-paths": "^3.4.6"
},
"dependencies": {
"@types/express": "^4.17.21",
"node-fetch": "^3.3.2",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0"
}
}