-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
26 lines (26 loc) · 965 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
{
"name": "stark-tic-tac-toe",
"version": "1.0.0",
"description": "Provable Tic-Tac-Toe built onchain on Starknet using Dojo",
"main": "index.js",
"scripts": {
"build-e": "cd engine && sozo build && scarb fmt",
"test-e": "cd engine && sozo test && scarb fmt",
"lint-e": "cd engine && scarb fmt",
"dev-c": "cd client && pnpm run dev",
"build-c": "cd client && pnpm run lint && pnpm run build",
"start-c": "cd client && pnpm run start",
"lint-c": "cd client && pnpm run lint",
"check": "cd client && pnpm run build && pnpm run lint && cd ../engine && sozo build && sozo test && scarb fmt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SoarinSkySagar/stark-tic-tac-toe.git"
},
"author": "SoarinSkySagar",
"license": "MIT",
"bugs": {
"url": "https://github.com/SoarinSkySagar/stark-tic-tac-toe/issues"
},
"homepage": "https://github.com/SoarinSkySagar/stark-tic-tac-toe#readme"
}