-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
55 lines (55 loc) · 1.67 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": "p2p-money",
"version": "1.0.0",
"description": "An app to help people exchange money online. without a middleman like a bank or exchange agency",
"main": "index.js",
"jest": {
"testEnvironment": "node"
},
"scripts": {
"server": "cd server && npm run dev",
"client": "cd client && npm start",
"client:init": "cd client && npm run build",
"start": "NODE_ENV=production node server/index.js",
"test": "NODE_ENV=test jest --runInBand --detectOpenHandles --coverage",
"dev": "nodemon server/index.js",
"kill": "fuser -k 5000/tcp",
"kill-run": "npm run kill && npm run server",
"heroku-postbuild": "cd client && npm install && npm run build",
"build:database:pro": "NODE_ENV=production node server/database/index.js",
"build:database:dev": "node server/database/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GSG-G8/p2p-money.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GSG-G8/p2p-money/issues"
},
"homepage": "https://github.com/GSG-G8/p2p-money#readme",
"dependencies": {
"axios": "^0.19.2",
"bcrypt": "^4.0.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"env2": "^2.2.2",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.19",
"yup": "^0.28.3"
},
"devDependencies": {
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"nodemon": "^2.0.2",
"prettier": "^2.0.2",
"supertest": "^4.0.2",
"jest": "^24.9.0"
}
}