-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 956 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 956 Bytes
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
{
"name": "localhost-login",
"version": "1.0.0",
"description": "An easy to use [offline] attendance form.",
"main": "index.js",
"scripts": {
"client": "cd client && npm start",
"server": "cd server && npm run watch:dev",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"test": "echo \"Error: no test specified\" && exit 1",
"client-install": "cd client && npm ci;",
"server-install": "cd server && npm ci;",
"install-all": "npm ci && npm-run-all -p client-install server-install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hunteracm/localhost-login.git"
},
"author": "",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/hunteracm/localhost-login/issues"
},
"homepage": "https://github.com/hunteracm/localhost-login#readme",
"devDependencies": {
"concurrently": "^5.1.0"
},
"dependencies": {
"npm-run-all": "^4.1.5"
}
}