-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.86 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
53
54
{
"name": "full-stack-project-template",
"version": "2.0.0",
"private": true,
"description": "A full stack TypeScript solo project.",
"type": "module",
"scripts": {
"start": "NODE_ENV=production npm start --prefix server",
"build": "npm run build --prefix client",
"db:import": "sh database/import.sh",
"dev:client": "npm run dev --prefix client",
"dev:server": "npm run dev --prefix server",
"dev": "npm-run-all --parallel --print-label dev:*",
"install:client": "npm install --prefix client",
"install:server": "npm install --prefix server",
"install:env": "test -f server/.env || cp server/.env.example server/.env",
"postinstall": "npm-run-all --parallel install:*",
"lint:client": "npm run lint --prefix client",
"lint:server": "npm run lint --prefix server",
"lint": "npm-run-all --parallel lint:*",
"prepare": "husky install",
"deploy": "git push --force origin main:pub"
},
"dependencies": {
"husky": "^8.0.3",
"npm-run-all": "^4.1.5",
"react-chatbot-kit": "^2.2.2",
"tsx": "^4.7.0",
"typescript": "^5.1.6"
},
"devDependencies": {
"@learningfuze/lfz-config": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"lint-staged": "^13.2.1",
"markuplint": "^3.7.0",
"postcss": "^8.4.38",
"prettier": "^2.8.7",
"stylelint": "^15.4.0",
"stylelint-config-recommended": "^11.0.0",
"stylelint-config-standard": "^32.0.0",
"tailwindcss": "^3.4.3"
}
}