-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
25 lines (25 loc) · 892 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
{
"name": "AstarLearning",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/mashharuki/AstarLearning.git",
"author": "mashharuki",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"run-node": "yarn workspace backend run-node",
"compile:all": "yarn workspace backend compile:all",
"compile:flipper": "yarn workspace backend compile:flipper",
"compile:nft": "yarn workspace backend compile:nft",
"compile:content": "yarn workspace backend compile:content",
"build:nft": "yarn workspace backend build:nft",
"build:content": "yarn workspace backend build:content",
"test:nft": "yarn workspace backend test:nft",
"test:content": "yarn workspace backend test:content",
"frontend:start": "yarn workspace frontend dev",
"frontend:build": "yarn workspace frontend build"
}
}