-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.19 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.19 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
44
45
{
"name": "icdgenie",
"version": "1.0.0",
"description": "Sample project template using express and react",
"main": "server/server.js",
"scripts": {
"prepare": "husky install",
"test": "npm run test:client && npm run test:server",
"install:server": "cd server && npm install",
"install:client": "cd client && npm install",
"test:client": "cd client && npm test",
"test:server": "cd server && npm test",
"start:client": "cd client && npm start",
"start:server": "cd server && npm start",
"build:client": "cd client && npm run build",
"format": "prettier --write --ignore-unknown ."
},
"keywords": [
"express",
"react"
],
"author": "",
"license": "ISC",
"devDependencies": {
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.6.1"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"quoteProps": "consistent",
"trailingComma": "all",
"bracketSpacing": true,
"arrowParens": "always",
"htmlWhitespaceSensitivity": "ignore",
"singleQuote": false,
"jsxBracketSameLine": true
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}