-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.79 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.79 KB
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
{
"name": "unops-ticketing-system",
"version": "1.0.0",
"description": "This is a ticketing system to manage tickets from a shared inbox email",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test tape test/server.test.js | tap-spec",
"testdb": "NODE_ENV=test tape test/dbtest.js | tap-spec",
"client": "npm start --prefix client",
"build": "npm run build --prefix client",
"start": "NODE_ENV=production node ./server/index.js",
"heroku-postbuild": "cd client && npm install && npm run build",
"dev": "nodemon node server/index.js",
"server": "NODE_ENV=production concurrently \"npm run dev\" \"npm run client\" "
},
"repository": {
"type": "git",
"url": "git+https://github.com/FACG6/UNOPS.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FACG6/UNOPS/issues"
},
"homepage": "https://github.com/FACG6/UNOPS#readme",
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.1",
"nodemon": "^1.18.11",
"supertest": "^4.0.2",
"tap-spec": "^5.0.0",
"tape": "^4.10.1"
},
"dependencies": {
"atob": "^2.1.2",
"base64-stream": "^1.0.0",
"bcryptjs": "^2.4.3",
"chart.js": "^2.8.0",
"compression": "^1.7.4",
"concurrently": "^4.1.0",
"cookie": "^0.3.1",
"cookie-parser": "^1.4.4",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"imap": "^0.8.19",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"mailparser": "^2.6.0",
"mailparser-mit": "^1.0.0",
"nodemailer": "^6.1.0",
"pg": "^7.9.0",
"react-froala-wysiwyg": "^2.9.5-1",
"react-loading": "^2.0.3",
"socket.io": "^2.2.0"
},
"directories": {
"test": "test"
},
"keywords": [],
"engines": {
"node": "11.13.0"
}
}