-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.99 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "questionnaire-ce",
"description": "A web tool to ask questions, and compute a score based on the given answers",
"repository": "https://github.com/JustsoSoftware/questionnaire-ce.git",
"version": "2.0.1",
"private": false,
"license": "Apache-2.0",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"jsonwebtoken": "^8.3.0",
"mysql2": "^1.6.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"react-tabs": "^3.0.0",
"sequelize": "^4.44.4",
"sequelize-cli": "^5.5.1"
},
"devDependencies": {
"d3": "^4.13.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint-plugin-react": "^7.11.1",
"fetch-mock": "^6.5.2",
"mocha": "^7.1.2",
"node-fetch": "^2.6.1",
"prop-types": "^15.6.2",
"qrcode.react": "^0.8.0",
"react": "^16.5.2",
"react-confirm-alert": "^2.0.6",
"react-dom": "^16.5.2",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-scripts": "^4.0.3",
"redux": "^3.7.2",
"redux-mock-store": "^1.5.3",
"redux-test-utils": "^0.2.2",
"redux-thunk": "^2.3.0",
"should": "^13.2.3"
},
"scripts": {
"migrate": "cd server; sequelize db:migrate --url `echo $DB_URL`",
"start": "node server/index.js",
"start-frontend": "react-scripts start",
"start-backend": "node server/index.js",
"build": "react-scripts build",
"lint": "eslint server/**/*.js src/**/*.js",
"test": "npm run test-server; npm run test-client",
"test-client": "react-scripts test --env=jsdom",
"test-server": "mocha server/**/*.test.js",
"eject": "react-scripts eject",
"docker-build": "docker build --tag dilab/questionnaire:latest .",
"docker-push": "docker push dilab/questionnaire:latest"
},
"proxy": "http://localhost:8080/",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"engines": {
"node": ">=14",
"npm": ">=6"
}
}