-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
162 lines (162 loc) · 6.47 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{
"name": "diary",
"version": "0.0.1",
"description": "Baby diary",
"main": "index.js",
"scripts": {
"lint:eslint": "eslint -c .eslintrc.json",
"lint:types": "tsc -p tsconfig.json --pretty --noEmit --noEmitOnError",
"lint:css": "stylelint",
"full-lint": "npm run lint:eslint && npm run lint:css && npm run lint:types",
"prettier": "prettier --write './src/**/*{js,ts,tsx,json}'",
"test": "jest",
"test:related": "jest --findRelatedTests",
"coverage": "jest --coverage",
"build:client-dev": "webpack --config ./configs/webpack/client/webpack.dev.js --mode development --color",
"build:client-prod": "webpack --config ./configs/webpack/client/webpack.prod.js --mode production --color",
"build:server-dev": "webpack --config ./configs/webpack/server/webpack.dev.js --mode development --color",
"build:server-prod": "webpack --config ./configs/webpack/server/webpack.prod.js --mode production --color",
"build:dev": "NODE_ENV=development npm-run-all --print-label --parallel build:client-dev build:server-dev",
"build:prod": "NODE_ENV=production npm-run-all --print-label --parallel build:client-prod build:server-prod",
"watch:server-dev": "webpack --config ./configs/webpack/server/webpack.dev.js --mode development --color --hot",
"watch:nodemon": "nodemon dist/server/index.js --watch dist/server/index.js",
"start:client-dev": "webpack serve --config ./configs/webpack/client/webpack.dev.js --mode development --color --hot",
"start:server-dev": "run-p watch:server-dev watch:nodemon",
"start": "NODE_ENV=development run-p --print-label start:client-dev start:server-dev"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/AntonLantukh/diary.git"
},
"keywords": [
"baby",
"diary",
"child"
],
"author": "Anton Lantukh",
"license": "ISC",
"bugs": {
"url": "https://github.com/AntonLantukh/diary/issues"
},
"homepage": "https://github.com/AntonLantukh/diary#readme",
"devDependencies": {
"-": "0.0.1",
"@babel/core": "7.12.13",
"@babel/plugin-proposal-class-properties": "7.12.13",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.12.13",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-runtime": "7.12.10",
"@babel/preset-env": "7.12.11",
"@babel/preset-react": "7.12.10",
"@babel/preset-typescript": "7.12.7",
"@babel/runtime": "7.12.5",
"@loadable/babel-plugin": "5.13.2",
"@loadable/webpack-plugin": "5.14.2",
"@types/bcrypt": "3.0.0",
"@types/compression": "1.7.0",
"@types/cookie-parser": "1.4.2",
"@types/express": "4.17.11",
"@types/http-errors": "1.8.0",
"@types/i18next-fs-backend": "1.0.0",
"@types/isomorphic-fetch": "0.0.35",
"@types/jest": "26.0.22",
"@types/js-cookie": "2.2.6",
"@types/jsonwebtoken": "8.5.1",
"@types/loadable__component": "5.13.2",
"@types/loadable__server": "5.12.3",
"@types/loadable__webpack-plugin": "5.7.1",
"@types/node": "14.14.31",
"@types/ramda": "0.27.39",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"@types/react-router": "5.1.11",
"@types/react-router-config": "5.0.2",
"@types/react-router-dom": "5.1.7",
"@types/redis": "2.8.28",
"@types/serialize-javascript": "5.0.0",
"@types/webpack": "4.41.26",
"@types/webpack-dev-middleware": "4.1.0",
"@types/webpack-dev-server": "3.11.1",
"@types/webpack-hot-middleware": "2.25.3",
"@typescript-eslint/eslint-plugin": "4.14.1",
"@typescript-eslint/parser": "4.14.1",
"autoprefixer": "9.8.6",
"babel-loader": "8.2.2",
"browserlist": "1.0.1",
"clean-webpack-plugin": "3.0.0",
"copy-webpack-plugin": "8.1.1",
"css-loader": "5.2.4",
"css-minimizer-webpack-plugin": "1.2.0",
"dotenv-webpack": "7.0.2",
"eslint": "7.19.0",
"eslint-config-prettier": "7.2.0",
"eslint-import-resolver-typescript": "2.3.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.3.3",
"eslint-plugin-json": "2.1.2",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"html-webpack-plugin": "4.5.1",
"husky": "4.3.8",
"jest": "26.6.3",
"lint-staged": "10.5.3",
"mini-css-extract-plugin": "1.5.0",
"nodemon": "2.0.7",
"npm-run-all": "4.1.5",
"null-loader": "4.0.1",
"postcss-loader": "5.0.0",
"prettier": "2.2.1",
"prettier-stylelint": "0.4.2",
"qs": "6.7.0",
"style-loader": "2.0.0",
"stylelint": "13.9.0",
"stylelint-config-idiomatic-order": "8.1.0",
"stylelint-config-standard": "20.0.0",
"stylelint-prettier": "1.1.2",
"typescript": "4.1.3",
"webpack": "5.34.0",
"webpack-cli": "4.4.0",
"webpack-dev-server": "3.11.2",
"webpack-node-externals": "2.5.2"
},
"dependencies": {
"@babel/runtime-corejs3": "7.12.13",
"@hookform/error-message": "0.0.5",
"@hot-loader/react-dom": "17.0.1",
"@loadable/component": "5.14.1",
"@loadable/server": "5.14.2",
"@material-ui/core": "4.11.3",
"@material-ui/icons": "4.11.2",
"accept-language": "3.0.18",
"bcrypt": "5.0.1",
"body-parser": "1.19.0",
"cookie-parser": "1.4.5",
"dotenv": "8.2.0",
"express": "4.17.1",
"express-winston": "4.1.0",
"helmet": "4.4.1",
"http-errors": "1.7.2",
"i18next": "19.9.2",
"i18next-fs-backend": "1.1.0",
"isomorphic-fetch": "3.0.0",
"joi": "17.4.0",
"js-cookie": "2.2.1",
"jsonwebtoken": "8.5.1",
"mobx": "6.1.6",
"mobx-react-lite": "3.2.0",
"mongoose": "5.12.1",
"ramda": "0.27.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-hook-form": "6.15.4",
"react-hot-loader": "4.13.0",
"react-i18next": "11.8.10",
"react-router": "5.2.0",
"react-router-config": "5.1.1",
"react-router-dom": "5.2.0",
"redis": "3.1.0",
"serialize-javascript": "5.0.1",
"winston": "3.3.3"
}
}