-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.75 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "harmony",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --quiet --fix",
"prepare": "husky install",
"installAll": "npm i --prefix ./client; npm i --prefix ./server",
"buildClient": "npm run build --prefix ./client",
"generate-env-client": "bash scripts/generateConfigClient.sh",
"zip": "./scripts/zipFiles.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Makes-Innovation-Hub/harmony.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Makes-Innovation-Hub/harmony/issues"
},
"homepage": "https://github.com/Makes-Innovation-Hub/harmony#readme",
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^8.38.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "2.8.8",
"styled-components": "^5.3.10",
"vite": "^4.3.2"
},
"dependencies": {
"@react-oauth/google": "^0.12.1",
"@reduxjs/toolkit": "^1.9.5",
"chai": "^4.3.7",
"cheerio": "^1.0.0-rc.12",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jwt-decode": "^4.0.0",
"mocha": "^10.2.0",
"mongoose": "^7.2.0",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"puppeteer": "^20.3.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.4",
"react-icons": "^4.8.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.11.2",
"react-share": "^5.1.0"
}
}