-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 1.08 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
{
"version": "0.4.1",
"name": "jikji",
"workspaces": [
"packages/*",
"example",
"docs",
"tests/*"
],
"scripts": {
"sandbox": "yarn workspace @jikji/sandbox start",
"generator": "yarn workspace @jikji/generator start",
"docs": "yarn workspace @jikji/website start --port 3001",
"build": "yarn run build-react & yarn run build-generator",
"build-react": "yarn workspace @jikji/react build",
"test-react": "yarn workspace @jikji/react test",
"build-docs": "yarn workspace @jikji/website build",
"test-generator": "yarn workspace @jikji/generator test",
"build-generator": "yarn workspace @jikji/generator build",
"example": "yarn workspace example start",
"example-ssg": "yarn workspace example start-ssg"
},
"packageManager": "yarn@3.2.3",
"dependencies": {
"eslint": "^8.33.0",
"prettier": "^2.8.3",
"typescript": "^4.9.4"
},
"devDependencies": {
"@types/eslint": "^8.4.10",
"@types/prettier": "^2.7.2"
}
}