This repository has been archived by the owner on Apr 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.45 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
{
"name": "@amille/dev-scripts",
"version": "0.0.0-development",
"description": "Development scripts for node and react projects",
"files": [
"bin",
"configs",
"scripts",
"helpers"
],
"bin": {
"am-scripts": "./bin/am-scripts.js"
},
"repository": "github:amille44420/dev-scripts",
"bugs": "https://github.com/amille44420/dev-scripts/issues",
"homepage": "https://github.com/amille44420/dev-scripts",
"keywords": [
"webpack",
"react",
"scripts",
"amille"
],
"license": "MIT",
"author": "Adrien Mille <[email protected]>",
"dependencies": {
"@amille/babel-preset": "^1.0.12",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.1",
"babel-loader": "^8.1.0",
"babel-plugin-named-asset-import": "^0.3.6",
"case-sensitive-paths-webpack-plugin": "^2.3.0",
"css-loader": "^5.0.0",
"dotenv": "^8.2.0",
"dotenv-expand": "^5.1.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"less": "^3.10.3",
"less-loader": "^7.0.0",
"mini-css-extract-plugin": "^1.0.0",
"null-loader": "^4.0.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"pnp-webpack-plugin": "^1.6.4",
"postcss-flexbugs-fixes": "^5.0.0",
"postcss-loader": "^3.0.0",
"postcss-normalize": "^9.0.0",
"postcss-preset-env": "^6.7.0",
"postcss-safe-parser": "^5.0.0",
"react-deep-force-update": "^2.1.3",
"react-dev-utils": "^11.0.0",
"react-refresh": "^0.9.0",
"resolve-url-loader": "^3.1.1",
"rimraf": "^3.0.1",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^4.0.0",
"url-loader": "^4.1.0",
"webpack": "^4.41.5",
"webpack-dev-server": "^3.10.2",
"webpack-node-externals": "^2.3.0"
},
"devDependencies": {
"@amille/eslint-config": "^1.3.4",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"babel-eslint": "^10.1.0",
"commitlint-circle": "^1.0.0",
"eslint": "^7.4.0",
"prettier": "^2.0.1",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"semantic-release": "^17.0.4"
},
"optionalDependencies": {
"express": "^4.17.1",
"react": "^17.0.0",
"react-dom": "17.0.1"
},
"scripts": {
"lint": "eslint --ignore-path .gitignore --ignore-pattern \"!**/.*\" .",
"lint:fix": "npm run lint -- --fix",
"lint:commit": "commitlint",
"lint:commit:ci": "commitlint-circle",
"release": "semantic-release"
},
"publishConfig": {
"access": "public"
}
}