-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.16 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
{
"name": "finwiz",
"version": "1.0.0",
"description": "Financial Wizard",
"main": "server/server.js",
"engines": {
"node": "19.9.0",
"npm": "9.6.4"
},
"devDependencies": {
"concurrently": "^5.1.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.7"
},
"scripts": {
"start": "nodemon server/server.js",
"develop": "concurrently \"cd server && npm run watch\" \"cd client && npm start\"",
"install": "cd server && npm i && cd ../client && npm i",
"seed": "cd server && npm run seed",
"build": "cd client && npm run build",
"lint": "cd client && npx eslint **/*.jsx",
"prettier": "npx prettier --write 'client/src/**/*.jsx'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/larigens/finwiz.git"
},
"keywords": [
"react",
"mongodb",
"mongoose",
"graphql",
"apollo",
"server",
"nodejs",
"expressjs"
],
"author": "Larissa Guilherme",
"license": "ISC",
"bugs": {
"url": "https://github.com/larigens/finwiz/issues"
},
"homepage": "https://github.com/larigens/finwiz#readme",
"dependencies": {
"concurrently": "^5.1.0",
"nodemon": "^2.0.22"
}
}