-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.31 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
69
70
71
72
73
74
{
"name": "data-visualisation",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node server.js",
"lint": "eslint . --fix",
"build": "npm run build:front",
"test": "npm run test:back",
"test:back": "npm run test:unit && npm run test:int",
"test:front": "npm test --prefix ./data-visualisation-app",
"test:update": "npm run test:unit:update && npm run test:int:update",
"test:unit": "jest -u unit --verbose",
"test:unit:update": "jest -u unit --updateSnapshot",
"test:int": "npm run test:int:par && npm run test:int:seq",
"test:int:update": "npm run test:int:par:update && npm run test:int:seq:update",
"test:int:seq": "jest -u --runInBand sequential --verbose",
"test:int:par": "jest -u parallel --verbose",
"test:int:seq:update": "jest -u --runInBand sequential --updateSnapshot",
"test:int:par:update": "jest -u parallel --updateSnapshot",
"posttest": "",
"install:front": "npm install --prefix ./data-visualisation-app",
"build:front": "npm run build --prefix ./data-visualisation-app",
"postinstall": "",
"heroku-prebuild": "npm run install:front",
"heroku-postbuild": "npm run build:front"
},
"cacheDirectories": [
"node_modules",
"data-visualisation-app/node_modules"
],
"repository": {
"type": "git",
"url": "git+https://github.com/COS301-SE-2020/Data-Visualisation.git"
},
"author": "Doofenshmirtz Evil Incorporated",
"license": "ISC",
"bugs": {
"url": "https://github.com/COS301-SE-2020/Data-Visualisation/issues"
},
"homepage": "https://github.com/COS301-SE-2020/Data-Visualisation#readme",
"dependencies": {
"axios": "^0.19.2",
"bcryptjs": "^2.4.3",
"connect-pg-simple": "^6.1.0",
"cors": "^2.8.5",
"csv-js": "^1.0.0",
"dom-parser": "^0.1.6",
"dotenv": "^8.2.0",
"error": "^10.4.0",
"events": "^3.1.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"helmet": "^4.1.1",
"jest": "^26.2.2",
"pg": "^8.2.1",
"pg-pool": "^3.2.1",
"rewire": "^5.0.0",
"save": "^2.4.0",
"timeseries-analysis": "^1.0.12",
"url": "^0.11.0",
"uuid": "^8.3.0",
"xmldom": "^0.3.0"
},
"devDependencies": {
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-watch": "^7.0.0"
}
}