-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.84 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
{
"name": "full-stack-app-template",
"version": "0.0.0",
"scripts": {
"dev": "concurrently \"npm run dev-server\" \"npm run dev-client\" \"npm run storybook\"",
"dev-client": "vite",
"dev-server": "ts-node-dev --project server/tsconfig.json server/index.ts",
"dev-storybook": "start-storybook -p 6006",
"build": "npm run build-client && npm run build-server && npm run build-storybook",
"build-client": "tsc && vite build",
"build-server": "tsc --project server/tsconfig.json",
"build-storybook": "build-storybook -o dist/storybook",
"serve": "vite preview",
"lint": "stylelint \"**/*.css\" && eslint . && prettier . --check",
"lint-fix": "stylelint \"**/*.css\" --fix && eslint . --fix && prettier . --write",
"prepare": "husky install",
"start": "node dist/index.js"
},
"dependencies": {
"express": "^4.17.1",
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@storybook/addon-actions": "^6.4.0-rc.3",
"@storybook/addon-essentials": "^6.4.0-rc.3",
"@storybook/addon-links": "^6.4.0-rc.3",
"@storybook/react": "^6.4.0-rc.3",
"@types/express": "^4.17.13",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vitejs/plugin-react": "^1.0.0",
"babel-loader": "^8.2.3",
"concurrently": "^6.4.0",
"eslint": "^8.2.0",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-storybook": "^0.4.1",
"husky": "^7.0.0",
"lint-staged": "^12.0.2",
"prettier": "^2.4.1",
"storybook-builder-vite": "^0.1.8",
"stylelint": "^14.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^24.0.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.2",
"vite": "^2.6.4"
}
}