-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.93 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
{
"name": "demo-monitor",
"version": "1.0.0",
"main": "index.js",
"author": "Matej Vobornik <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:client": "next client",
"dev:server": "nodemon --exec 'ts-node' server/app.ts",
"lint": "eslint server/** client/**",
"lint:fix": "eslint --fix server/** client/**",
"test": "jest server"
},
"devDependencies": {
"@types/basic-auth": "^1.1.3",
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/jest": "^25.2.3",
"@types/jsonwebtoken": "^8.5.0",
"@types/morgan": "^1.9.0",
"@types/prop-types": "^15.7.3",
"@types/react": "^16.9.35",
"@types/react-redux": "^7.1.9",
"@types/styled-components": "^5.1.0",
"@types/uuid": "^8.0.0",
"@types/yup": "^0.29.0",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"babel-plugin-styled-components": "^1.10.7",
"concurrently": "^5.2.0",
"eslint": "^7.1.0",
"eslint-plugin-react": "^7.20.0",
"jest": "^26.0.1",
"nodemon": "^2.0.4",
"react-is": "^16.13.1",
"ts-jest": "^26.0.0",
"ts-node": "^8.10.1",
"typescript": "^3.9.3"
},
"dependencies": {
"axios": "^0.19.2",
"basic-auth": "^2.0.1",
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"cross-fetch": "^3.0.4",
"dayjs": "^1.8.27",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"faunadb": "^2.14.1",
"grommet": "^2.13.0",
"jsonwebtoken": "^8.5.1",
"local-storage": "^2.0.0",
"morgan": "^1.10.0",
"ms": "^2.1.2",
"next": "^9.4.2",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"styled-components": "^5.1.0",
"uuid": "^8.1.0",
"yup": "^0.29.0"
}
}