-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.27 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
{
"name": "twitter-like-app-clean-architecture",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pirosikick/twitter-like-app-clean-architecture.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/pirosikick/twitter-like-app-clean-architecture/issues"
},
"homepage": "https://github.com/pirosikick/twitter-like-app-clean-architecture#readme",
"devDependencies": {
"@types/express": "^4.16.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.2.0",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"prettier": "^1.15.2",
"ts-jest": "^23.10.5",
"ts-loader": "^5.3.1",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.7.0",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.16.0",
"typescript": "^3.1.6",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"tslint --fix",
"prettier --write",
"git add"
],
"*.{js,json,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@types/body-parser": "^1.17.0",
"@types/express-session": "^1.15.11",
"@types/handlebars": "^4.0.39",
"@types/jest": "^23.3.10",
"@types/node": "^8.10.38",
"@types/react": "^16.7.13",
"@types/react-dom": "^16.0.11",
"@types/react-redux": "^6.0.10",
"@types/react-router-dom": "^4.3.1",
"@types/recompose": "^0.30.0",
"@types/styled-components": "^4.1.3",
"@types/uuid": "^3.4.4",
"@zeit/next-typescript": "^1.1.1",
"awilix": "^4.0.1",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"express-session": "^1.15.6",
"handlebars": "^4.0.12",
"history": "^4.7.2",
"next": "^7.0.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-redux": "^6.0.0",
"react-router-dom": "^4.3.1",
"recompose": "^0.30.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"styled-components": "^4.1.2",
"typesafe-actions": "^2.0.4",
"uuid": "^3.3.2"
}
}