forked from Scratch-Tech-Software/Subslify
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.61 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
{
"name": "subslify",
"version": "0.1.0",
"description": "Subslify is a subscription management app that helps users track and organize their monthly subscriptions.",
"main": "server.js",
"scripts": {
"install-dependencies": "npm run install-client && npm run install-server && npm install",
"install-client": "cd client && npm install",
"install-server": "cd server && npm install",
"build-client": "npm run build --prefix client",
"lint": "eslint --ext js,jsx",
"lint-fix": "eslint --ext js,jsx --fix",
"check": "prettier --check",
"format": "prettier --write",
"test": "echo \"Error: no test specified\" && exit 1",
"start-docker": "docker-compose --env-file .env up -d",
"stop-docker": "docker-compose down",
"start-server": "npm run start-server --prefix server",
"start-client": "npm start --prefix client",
"start": "npm run start-client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Scratch-Tech-Software/Subslify.git"
},
"author": "Scratch Tech Software",
"license": "MIT",
"bugs": {
"url": "https://github.com/Scratch-Tech-Software/Subslify/issues"
},
"homepage": "https://github.com/Scratch-Tech-Software/Subslify#readme",
"private": true,
"dependencies": {},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/validator": "^13.7.11",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-react": "^7.32.1",
"prettier": "^2.8.1"
}
}