-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.26 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
{
"name": "gong-mu-in",
"version": "1.0.0",
"license": "MIT",
"private": true,
"workspaces": [
"packages/client",
"packages/gmi-design-system"
],
"devDependencies": {
"@nrwl/cli": "latest",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.5",
"eslint-plugin-import": "^2.29.1",
"glob": "latest",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"nx": "15.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/dnd-side-project/dnd-11th-3-frontend"
},
"scripts": {
"prepare": "if [ \"$NETLIFY\" != \"true\" ] && [ \"$CLOUDFLARE_PAGES\" != \"true\" ]; then husky install && chmod +x .husky/pre-commit; fi",
"build:gongmuin-client": "npx nx run gongmuin-client:build",
"dev-client": "npx nx run gongmuin-client:dev",
"gen-icon-client": "npx nx run gongmuin-client:gen-icon",
"gen-design-system": "npx nx run gongmuin-client:gen-design-system",
"gen-api": "npx nx run gongmuin-client:gen-api",
"storybook": "npx nx run gmi-design-system:storybook",
"build-storybook": "npx nx run gmi-design-system:build-storybook",
"build-design-system": "npx nx run gmi-design-system:build"
}
}