-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 3.02 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
{
"name": "mern-template",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:borodayev/mern-template.git",
"author": "Valeriy Borodayev <borodaev97@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/mini-css-extract-plugin": "1.2.1",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"@types/uuid": "^8.3.1",
"@types/webpack": "^5.28.0",
"@types/webpack-node-externals": "^2.5.2",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"autoprefixer": "^10.3.4",
"browserslist": "^4.17.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.0",
"css-loader": "^6.2.0",
"cssnano": "^5.0.8",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-unused-imports": "^2.0.0",
"file-loader": "^6.2.0",
"html-loader": "^3.1.0",
"html-webpack-plugin": "^5.3.2",
"husky": "^7.0.2",
"mini-css-extract-plugin": "^2.2.2",
"node-sass": "^7.0.1",
"postcss": "^8.3.6",
"postcss-loader": "^6.1.1",
"postcss-normalize": "^10.0.0",
"postcss-scss": "^4.0.0",
"prettier": "^2.3.2",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"stylelint": "^14.2.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-no-unsupported-browser-features": "^5.0.1",
"stylelint-prettier": "^2.0.0",
"sugarss": "^4.0.1",
"ts-loader": "^9.2.5",
"ts-node-dev": "^1.1.8",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "^4.4.2",
"webpack": "^5.66.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.7.3",
"webpack-merge": "^5.8.0",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"date-fns": "^2.28.0",
"dotenv": "^11.0.0",
"express": "^4.17.1",
"mongoose": "^6.0.5",
"morgan": "^1.10.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"uuid": "^8.3.2",
"winston": "^3.3.3"
},
"scripts": {
"start:client": "webpack serve --progress --config ./webpack.config.client.ts",
"start:server": "tsnd --watch 'src/server/**' -r dotenv/config src/server/index.ts",
"build:client": "webpack --config ./webpack.config.client.ts --node-env=production",
"build:server": "webpack --config ./webpack.config.server.ts --node-env=production",
"build": "yarn server:build && yarn client:build",
"lint-ts": "./node_modules/.bin/tsc --skipLibCheck --noEmit",
"lint-es": "./node_modules/.bin/eslint --cache ./src",
"lint-styles": "./node_modules/.bin/stylelint --cache ./src",
"pre-commit": "yarn lint-es && yarn lint-ts && yarn lint-styles",
"prepare": "husky install"
}
}