-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.49 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": "inova-it",
"version": "1.0.0",
"description": "Inova IT competition platform",
"main": "server.js",
"scripts": {
"client-install": "npm install --prefix client",
"start": "node server.js",
"server-dev": "ts-node-dev src/server.ts",
"client-dev": "npm start --prefix client",
"dev": "concurrently \"npm run server-dev\" \"npm run client-dev\"",
"server": "nodemon dist/server.js",
"client": "npm start --prefix dist/client",
"release": "concurrently \"npm run server\" \"npm run client\"",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"test": "jest",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"jest": {
"testEnvironment": "node"
},
"author": "Uroš Zagoranski",
"license": "ISC",
"dependencies": {
"@babel/preset-env": "^7.5.5",
"@material-ui/core": "^4.3.1",
"@types/array-sort": "^1.0.0",
"@types/dotenv": "^6.1.1",
"@types/hapi__joi": "^15.0.4",
"@types/lodash": "^4.14.138",
"array-sort": "^1.0.0",
"axios": "^0.19.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"celebrate": "^10.0.1",
"concurrently": "^4.1.2",
"date-fns": "^2.0.0",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"is-empty": "^1.2.0",
"joi-objectid": "^2.0.0",
"jsonwebtoken": "^8.5.1",
"mdbreact": "^4.18.1",
"mongoose": "^5.6.9",
"npm": "^6.10.3",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"query-string": "^6.8.2",
"react-datepicker": "^2.8.0",
"react-icons": "^3.7.0",
"react-transition-group": "^4.2.2",
"reactstrap": "^8.0.1",
"request": "^2.88.0",
"validator": "^11.1.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.17.1",
"@types/classnames": "^2.2.9",
"@types/express": "^4.17.1",
"@types/is-empty": "^1.2.0",
"@types/jest": "^24.0.18",
"@types/jsonwebtoken": "^8.3.3",
"@types/mongoose": "^5.5.13",
"@types/node": "^12.7.2",
"@types/npm": "^2.0.30",
"@types/passport": "^1.0.0",
"@types/passport-jwt": "^3.0.1",
"@types/query-string": "^6.3.0",
"@types/react-datepicker": "^2.8.1",
"@types/react-icons": "^3.0.0",
"@types/react-transition-group": "^4.2.2",
"@types/reactstrap": "^8.0.4",
"@types/request": "^2.48.2",
"@types/sinon": "^7.0.13",
"@types/validator": "^10.11.3",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^2.1.0",
"axios-mock-adapter": "^1.17.0",
"eslint": "^6.3.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-typescript": "^4.0.1",
"eslint-plugin-flowtype": "^4.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"jest": "^24.8.0",
"mobx": "^5.13.0",
"mobx-react": "^6.1.3",
"nodemon": "^1.19.1",
"sinon": "^7.4.1",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"ts-node-dev": "^1.0.0-pre.41",
"typescript": "^3.5.3"
}
}