-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 852 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 852 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
{
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"name": "proposal_tracker",
"scripts": {
"build": "npm run build --workspaces --if-present",
"lint": "npx eslint --fix .",
"prebuild": "npm run prebuild --workspaces --if-present",
"prepare": "husky install",
"pretest": "npm run prebuild --workspaces --if-present",
"start": "npm start --workspaces --if-present",
"test": "npm test --workspaces --if-present",
"format": "npx prettier . --write",
"format:check": "npx prettier . --check"
},
"type": "module",
"workspaces": [
"src/proposal_tracker_frontend"
],
"devDependencies": {
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-react": "latest",
"husky": "latest",
"prettier": "latest",
"prettier-plugin-tailwindcss": "^0.5.14"
}
}