-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
55 lines (55 loc) · 1.49 KB
/
package.json
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
46
47
48
49
50
51
52
53
54
55
{
"name": "sambal-sos",
"private": true,
"version": "2.0.0",
"description": "Crowdsourcing aid data across the nation",
"main": "index.js",
"scripts": {
"start-frontend": "cd packages/webapp && npm start",
"start-backend": "cd packages/server && npm start",
"build": "cd packages/webapp && npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "husky install",
"prepare": "husky install",
"lint": "cd packages/webapp && npm run lint:fix"
},
"lint-staged": {
"*.+(js|jsx)": [
"./node_modules/.bin/eslint --fix",
"./node_modules/.bin/prettier --write --ignore-unknown"
],
"*.+(json|css|md)": [
"./node_modules/.bin/prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/sidharrth2002/sambal-sos-app.git"
},
"author": "The Sambal SOS team",
"license": "MIT",
"bugs": {
"url": "https://github.com/sidharrth2002/sambal-sos-app/issues"
},
"homepage": "https://github.com/sidharrth2002/sambal-sos-app#readme",
"devDependencies": {
"autoprefixer": "^9.8.6",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"husky": "^7.0.0",
"lerna": "^4.0.0",
"lint-staged": "^11.0.1",
"postcss": "^7.0.36",
"prettier": "^2.3.2",
"turbo": "^1.0.19"
},
"turbo": {
"baseBranch": "origin/main"
},
"workspaces": [
"packages/*",
"apps/*"
]
}