-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.74 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
56
{
"name": "joy",
"version": "1.0.0",
"description": "An efficacy tool to demonstrate the impact of key services",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test cd client && npm test && cd ../server && npm test",
"start": "cd server && node start.js",
"start:watch": "cd server && nodemon ./start.js",
"start:dev": "NODE_ENV=production concurrently \"npm run start:watch\" \"cd client && npm run start\"",
"heroku-postbuild": "cd client && npm install && npm run build",
"db-init": "cd server && node model/db_init.js",
"coverage": "cd client && npm test -- --coverage --watchAll=false && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac18/joy.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac18/joy/issues"
},
"homepage": "https://github.com/fac18/joy#readme",
"dependencies": {
"@material-ui/core": "^4.9.2",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.43",
"@material-ui/styles": "^4.9.0",
"apexcharts": "^3.15.6",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"morgan": "^1.9.1",
"password-generator": "^2.2.3",
"pg": "^7.18.1",
"react-apexcharts": "^1.3.6",
"react-hook-form": "^4.9.6",
"react-vis": "^1.11.7",
"tape": "^4.13.0",
"url": "^0.11.0"
},
"devDependencies": {
"codecov": "^3.6.5",
"concurrently": "^5.1.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^2.0.2"
}
}