-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.93 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.93 KB
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
60
61
62
63
64
65
66
{
"name": "@proto-kit/processor",
"license": "MIT",
"private": false,
"type": "module",
"version": "0.1.1-develop.267+b252853",
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsc -p tsconfig.json --watch",
"prelint": "npm run pre",
"prebuild": "npm run pre",
"predev": "npm run pre",
"pretest": "npm run pre",
"pre": "npm run prisma:generate",
"lint": "eslint ./src ./test",
"test:file": "node --experimental-vm-modules --experimental-wasm-modules ../../node_modules/jest/bin/jest.js",
"prisma:generate": "prisma generate --schema=./test/prisma/schema.prisma",
"test": "npm run test:file -- ./src/** ./test/**",
"test:watch": "npm run test:file -- ./src/** ./test/** --watch"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"dependencies": {
"@inkjs/ui": "^1.0.0",
"@prisma/client": "^5.22.0",
"@types/yargs": "^17.0.29",
"figlet": "^1.7.0",
"ink": "^4.4.1",
"ink-ascii": "^0.0.4",
"jest-mock-extended": "^4.0.0-beta1",
"prisma-mock": "^0.10.3",
"react": "^18.2.0",
"reflect-metadata": "^0.1.13",
"yargs": "^17.7.2"
},
"peerDependencies": {
"@proto-kit/api": "*",
"@proto-kit/common": "*",
"@proto-kit/library": "*",
"@proto-kit/module": "*",
"@proto-kit/persistance": "*",
"@proto-kit/protocol": "*",
"@proto-kit/sdk": "*",
"@proto-kit/sequencer": "*",
"o1js": "^1.1.0",
"tsyringe": "^4.7.0",
"type-graphql": "2.0.0-rc.2",
"typegraphql-prisma": "^0.28"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@proto-kit/api": "*",
"@proto-kit/common": "*",
"@proto-kit/library": "*",
"@proto-kit/module": "*",
"@proto-kit/protocol": "*",
"@proto-kit/sdk": "*",
"@proto-kit/sequencer": "*",
"@types/figlet": "^1.5.7",
"@types/ink": "^2.0.3",
"@types/node": "^20.8.10"
},
"gitHead": "b2528538c73747d000cc3ea99ee26ee415d8248d"
}