-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 933 Bytes
/
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
{
"name": "swiss",
"version": "1.0.0",
"main": "./build/src/index.js",
"scripts": {
"swiss": "npx ts-node ./src/cli/index.ts",
"start": "node ./build/src/index.js",
"build": "npx tsc",
"run": "npx ts-node ./src/index.ts",
"dev": "npx ts-node-dev --respawn --rs --watch ./code/**/*.sw ./src/index.ts",
"test": "npx jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/node": "^18.11.12",
"@types/uuid": "^9.0.0",
"@types/viz.js": "^2.1.2",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"babel-jest": "^29.3.1",
"eslint": "^8.29.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4",
"viz.js": "^2.1.2"
},
"dependencies": {
"uuid": "^9.0.0"
}
}