-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.04 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
{
"name": "werbezeichen-frontend_template",
"version": "1.0.0",
"main": "index.tsx",
"author": "Felix Sabelleck <Felix.Sabelleck@werbezeichen.de>",
"license": "MIT",
"scripts": {
"build:dev": "node ./scripts/build/dev",
"build:dev:watch": "node ./scripts/build/dev -- --watch",
"build": "node ./scripts/build/prod",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"serve": "nodemon ./dist/server/bundle.js",
"start": "npm-run-all -p build:dev:watch serve"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/preset-env": "^7.12.16",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.12.16",
"@types/express": "^4.17.11",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"babel-loader": "^8.2.2",
"brotli-webpack-plugin": "^1.1.0",
"compression-webpack-plugin": "^7.1.2",
"css-loader": "^5.0.2",
"css-modules-typescript-loader": "^4.0.1",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"file-loader": "^6.2.0",
"fs-extra": "^9.1.0",
"html-webpack-plugin": "^5.1.0",
"husky": "4",
"lint-staged": ">=10",
"mini-css-extract-plugin": "^1.3.7",
"node-sass": "^5.0.0",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"parallel-webpack": "^2.6.0",
"prettier": "^2.2.1",
"sass-loader": "^11.0.1",
"sass-resources-loader": "^2.1.1",
"style-loader": "^2.0.0",
"typescript": "^4.1.5",
"webpack": "^5.22.0",
"webpack-cli": "^4.5.0",
"webpack-node-externals": "^2.5.2"
},
"dependencies": {
"express": "^4.17.1",
"express-static-gzip": "^2.1.1",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
}
}