-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.29 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
{
"name": "woodnstone_next",
"version": "0.0.1",
"description": "Project for a Webshop selling handmade products based on natural materials.",
"scripts": {
"preinstall": "node scripts/preinstall.mjs",
"start": "concurrently npm:start:frontend npm:start:backend npm:start:admin",
"test": "concurrently npm:test:frontend npm:test:backend npm:test:admin",
"test:admin": "npm run test -w admin",
"test:backend": "npm run test -w backend",
"test:frontend": "npm run test -w frontend",
"start:frontend": "npm run dev -w frontend",
"start:backend": "npm run start -w backend",
"start:admin": "npm run start -w admin",
"prettier": "prettier --write **/*.{js,ts,css,scss,jsx,tsx}"
},
"author": "Kevin Kötz (https://github.com/KevinKoetz)",
"workspaces": [
"frontend",
"backend",
"admin"
],
"devDependencies": {
"concurrently": "^7.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"**/*.{js,ts,css,scss,jsx,tsx}": [
"prettier --write",
"git add"
]
},
"ignore": [
"node_modules",
"dist",
"package-lock.json",
".next",
"build"
]
}
}