-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.2 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.2 KB
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": "react-template",
"version": "1.0.0",
"description": "Preconfigured react template compatible with style agnostic components approach.",
"main": "dist/index.html",
"scripts": {
"build": "npm run lint && npm run svgo && webpack -c ./config/prod.config.js && npm run typecheck",
"svgo": "svgo -rf src",
"svgo:watch": "gulp",
"analyze-build": "webpack -c ./config/analyze-prod.config.js",
"dev": "webpack serve -c ./config/dev.config.js",
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc --watch --noEmit",
"lint": "eslint src",
"test": "jest",
"test:watch": "jest --watch",
"audit": "npm audit --omit dev",
"postinstall": "rm -rf node_modules/@types/loader-utils",
"prepare": "husky",
"prepush": "npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/omatviiv/react-template.git"
},
"author": "Oleh Matviiv",
"license": "MIT",
"bugs": {
"url": "https://github.com/omatviiv/react-template/issues"
},
"homepage": "https://github.com/omatviiv/react-template#readme",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@svgr/webpack": "^8.1.0",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@typescript-eslint/typescript-estree": "^8.0.0",
"babel-loader": "^9.1.3",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.35.0",
"eslint-webpack-plugin": "^4.2.0",
"gulp": "^5.0.0",
"gulp-svgo": "^1.5.4",
"gulp-watch": "^5.0.1",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.1.4",
"jest": "^29.3.1",
"restrict-imports-loader": "^3.2.6",
"svgo": "^3.3.2",
"ts-jest": "^29.2.4",
"typescript": "^5.3.3",
"webpack": "^5.93.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.2"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"styled-components": "^6.1.12"
}
}