-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.17 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
60
61
62
63
64
65
66
67
68
69
{
"name": "chain",
"version": "1.0.0",
"type": "module",
"main": "dist/index.js",
"license": "MIT",
"watch": {
"build-and-start": {
"patterns": [
"src"
],
"extensions": [
"*"
]
}
},
"scripts": {
"lint": "eslint .",
"test": "node --experimental-vm-modules --experimental-wasm-modules --experimental-wasm-threads ./node_modules/jest/bin/jest.js",
"test:watch": "npm run test --watchAll",
"build": "tsc",
"start": "yarn start:chain & yarn start:client",
"start:client": "node --experimental-specifier-resolution=node ./dist/src/main.js",
"start:chain": "FORCE_COLOR=3 protokit start ./dist/src/chain.config.js",
"build-and-start": "yarn build && yarn start",
"dev:chain": "yarn build && yarn start:chain",
"dev:client": "yarn build && yarn start:client",
"dev": "npm-watch build-and-start",
"custom-run": "node --experimental-specifier-resolution=node --experimental-vm-modules --experimental-wasm-modules --experimental-wasm-threads ./dist/bin/run.js"
},
"devDependencies": {
"@jest/globals": "^29.6.1",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.7",
"@types/node": "^20.8.10",
"@types/react-dom": "^18.2.7",
"assert": "^2.0.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"events": "^3.3.0",
"jest": "^29.6.1",
"jest-expect-message": "^1.1.3",
"loglevel": "^1.8.1",
"npm-watch": "^0.11.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"string_decoder": "^1.3.0",
"ts-jest": "^29.1.1",
"typescript": "4.9.4",
"url": "^0.11.1",
"util": "^0.12.5"
},
"dependencies": {
"@proto-kit/api": "0.1.1-develop.651",
"@proto-kit/cli": "0.1.1-develop.651",
"@proto-kit/common": "0.1.1-develop.651",
"@proto-kit/library": "0.1.1-develop.651",
"@proto-kit/module": "0.1.1-develop.651",
"@proto-kit/protocol": "0.1.1-develop.651",
"@proto-kit/sdk": "0.1.1-develop.651",
"@proto-kit/sequencer": "0.1.1-develop.651",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"o1js": "0.13.1",
"reflect-metadata": "^0.2.1",
"tsyringe": "^4.7.0"
}
}