-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.6 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
51
52
53
54
55
56
57
58
59
{
"name": "zkgaming-toolkit",
"packageManager": "[email protected]",
"author": "Kryha",
"description": "Toolkit for game development on the Aleo platform",
"version": "0.0.1",
"license": "Apache-2.0",
"engines": {
"node": "^18.16.0"
},
"files": [
"build"
],
"main": "build/src/index.js",
"repository": {
"type": "git",
"url": "https://[email protected]/Kryha-io/Aleo/_git/zkgaming-toolkit"
},
"scripts": {
"clean": "rm -rf build/",
"build": "yarn clean && tsc",
"start": "yarn build && NODE_PATH=. node --enable-source-maps build/src/index.js",
"test": "NODE_PATH=. jest"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-serve-static-core": "^4.17.30",
"@types/jest": "^28.1.7",
"@types/morgan": "^1.9.3",
"@types/node": "^18.7.6",
"@types/source-map-support": "^0.5.6",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.1.3",
"supertest": "^6.2.4",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@aleohq/wasm": "^0.4.0",
"axios": "^1.3.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.18.1",
"express-async-handler": "^1.2.0",
"helmet": "^5.1.1",
"morgan": "^1.10.0",
"source-map-support": "^0.5.21",
"winston": "^3.8.1",
"zod": "^3.18.0"
}
}