-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
101 lines (101 loc) · 3.23 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "zc_plugin_company_goals",
"version": "1.0.0",
"main": "server.js",
"repository": "[email protected]:zurichat/zc_plugin_company_goals.git",
"type": "commonjs",
"scripts": {
"client:build": "cross-env INLINE_RUNTIME_CHUNK=false yarn --cwd client run build && yarn serve-client:build",
"serve-client:build": "cross-env INLINE_RUNTIME_CHUNK=false yarn --cwd serve-client run build",
"client:dev": "concurrently \"yarn --cwd serve-client start\" \"yarn --cwd client start\"",
"dev": "concurrently --kill-others-on-fail \"yarn run server\" \"yarn run client:dev\"",
"server": "nodemon -e js,json,yaml server.js",
"server:dev": "cross-env NODE_ENV=development nodemon server.js",
"server:prod": "cross-env NODE_ENV=production nodemon server.js",
"test": "cross-env NODE_ENV=test mocha test --timeout 30000 --recursive --exit",
"test:silent": "cross-env NODE_ENV=test mocha test --reporter min --timeout 30000 --recursive --exit",
"test:unit": "cross-env NODE_ENV=test mocha test/unit --timeout 30000 --recursive --exit",
"test:integration": "cross-env NODE_ENV=test mocha test/integration --timeout 30000 --recursive --exit",
"coverage": "cross-env NODE_ENV=test nyc --reporter=html --reporter=text yarn test",
"start": "node server.js",
"prepare": "husky install",
"format": "prettier -w .",
"lint": "eslint "
},
"author": "Team Plato",
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.4.1",
"@mui/icons-material": "^5.0.1",
"@mui/material": "^5.0.2",
"agenda": "^4.2.1",
"ajv": "^8.6.3",
"aria-query": "^5.0.0",
"axios": "^0.21.4",
"centrifuge": "^2.8.0",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"chai-json-schema-ajv": "^5.2.4",
"clsx": "^1.1.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-rate-limit": "^5.3.0",
"helmet": "^4.6.0",
"joi": "^17.4.2",
"mocha": "^9.1.2",
"morgan": "^1.10.0",
"node-cron": "^3.0.0",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"react-paginate": "^7.1.3",
"request": "^2.88.2",
"rewire": "^5.0.0",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0",
"supertest": "^6.1.6",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.1.6",
"timeago-react": "^3.0.3",
"uuid": "^8.3.2",
"uuidv4": "^6.2.12",
"winston": "^3.3.3",
"winston-transport": "^4.4.0",
"xss-clean": "^0.1.1",
"yamljs": "^0.3.0",
"yarn": "^1.22.11"
},
"devDependencies": {
"concurrently": "^6.2.1",
"cross-env": "^7.0.3",
"cspell": "^5.8.2",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.25.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.0",
"lint-staged": "^11.1.2",
"nodemon": "^2.0.12",
"prettier": "^2.3.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write"
]
},
"engines": {
"node": "^14"
}
}