-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.72 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
{
"name": "libre",
"version": "1.0.0",
"description": "<p align=\"center\"><img alt = \"LibreLogo\" width=30% src=\"https://i.imgur.com/b8LgXaP.png\"> </p>",
"main": "index.js",
"scripts": {
"lint": "npx eslint ./Libre-Server/**",
"format": "npx eslint ./Libre-Server/** --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install npm && run build",
"start": "concurrently \"node ./Libre-Server/backend/server.js\" \"cd ./Libre-Server/frontend/ && npm run start\"",
"frontend": "cd ./Libre-Server/frontend/ && react-scripts start",
"backend": "cd ./Libre-Server/backend/ && node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BillyMerchan/Libre.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/BillyMerchan/Libre/issues"
},
"homepage": "https://github.com/BillyMerchan/Libre#readme",
"devDependencies": {
"@testing-library/react": "^14.1.2",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"eslint": "^8.46.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.7.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@types/react": "^18.0.29",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.0",
"react": "^18.2.0",
"react-zoom-pan-pinch": "^3.3.0",
"run-script": "^0.1.1",
"typescript-eslint": "^0.0.1-alpha.0"
}
}