-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.01 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.01 KB
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
{
"name": "zero-to-auth-frontend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"client": "cd client && npm start",
"server": "cd server && npm start",
"dev": "concurrently \"npm run client\" \"npm run server\"",
"prepare": "husky install",
"postinstall": "concurrently \"cd client && npm i\" \"cd server && npm i\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/descope-sample-apps/zero-to-auth-frontend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/descope-sample-apps/zero-to-auth-frontend/issues"
},
"homepage": "https://github.com/descope-sample-apps/zero-to-auth-frontend#readme",
"dependencies": {
"concurrently": "^7.6.0"
},
"devDependencies": {
"husky": "^9.0.0",
"lint-staged": "^17.0.0",
"prettier": "3.8.3"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}