-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.53 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
{
"name": "react-presentation-container",
"version": "0.0.15",
"description": "A container helper for cleaner react",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"build": "webpack --config ./webpack/webpack.dev.js",
"build:watch": "npm run build -- --watch",
"build:prod": "webpack --config ./webpack/webpack.prod.js",
"build:analyze": "webpack --config ./webpack/webpack.analyze.js",
"start": "webpack-dev-server",
"lint": "eslint ./src --fix",
"format": "prettier --write ./src/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nwpray/webpack-boilerplate.git"
},
"keywords": [
"webpack",
"boilerplate",
"babel",
"eslint",
"prettier",
"husky"
],
"author": "Nick Pray <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/nwpray/webpack-boilerplate/issues"
},
"homepage": "https://github.com/nwpray/webpack-boilerplate#readme",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"babel-loader": "^9.2.1",
"clean-webpack-plugin": "^4.0.0",
"webpack": "^5.97.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0",
"webpack-merge": "^6.0.1"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-react": "^7.26.3",
"lodash": "^4.17.21",
"prop-types": "^15.8.1"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0 || ^19.0.0"
}
}