-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.13 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.13 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
37
38
39
40
41
42
43
{
"name": "web-app",
"version": "1.0.0",
"description": "Spinning up frontend:\\ `cd client`\\ `npm start`\\ Navigate to `http://localhost:3000/` to access the front end",
"engines": {
"node": "~12.11.1"
},
"main": "index.js",
"scripts": {
"deploy": "./deploy.sh",
"lint": "prettier --check .",
"format": "prettier --write .",
"start": "cd server && npm install && node server.js",
"heroku-postbuild": "cd client && npm install && npm run build && cp -r build/* public",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/comic-sans-app/web-app.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/comic-sans-app/web-app/issues"
},
"homepage": "https://github.com/comic-sans-app/web-app#readme",
"dependencies": {
"concurrently": "^5.3.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
},
"devDependencies": {
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1"
}
}