-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.65 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "tpl-react-lib",
"version": "0.0.1",
"description": "React library starter",
"license": "BSD-3-Clause",
"homepage": "https://github.com/andreidmt/tpl-react-lib#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/andreidmt/tpl-react-lib.git"
},
"bugs": {
"url": "https://github.com/andreidmt/tpl-react-lib/issues"
},
"author": {
"name": "Andrei Dumitrescu",
"url": "https://github.com/andreidmt"
},
"main": "dist/index.js",
"style": "dist/index.css",
"scripts": {
"----UTIL": "",
"clean": "rm -rf ./node_modules",
"setup": "npm run clean && npm i && npm audit fix",
"setup:ci": "npm ci && npm audit fix",
"update": "npm-check --update",
"update-force": "npm-check --update-all",
"----DEV": "",
"start": "webpack serve --mode development",
"----BUILD": "",
"build": "webpack --mode production",
"----LINT": "",
"lint:css": "stylelint 'src/*.css' 'src/**/*.css'",
"lint:md": "markdownlint *.md",
"lint:js": "eslint --ext .jsx,.js,.json --quiet src",
"lint": "npm run lint:md && npm run lint:css && npm run lint:js",
"----TEST": "",
"test": "riteway -r @babel/register -r ignore-styles 'src/**/*.test.js' 'src/**/*.test.jsx' | tap-nirvana",
"tdd": "nodemon -e js,jsx,json --watch src --exec 'npm test'"
},
"dependencies": {
"@asd14/m": "^5.0.0",
"@babel/runtime": "^7.13.7",
"classnames": "^2.2.6",
"cuid": "^2.1.8",
"debug": "^4.1.1",
"luxon": "^1.26.0",
"qs": "^6.9.6",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"sanitize.css": "^12.0.1"
},
"peerDependencies": {
"react": "^17.*",
"react-dom": "^17.*"
},
"devDependencies": {
"@asd14/eslint-config": "^5.29.0",
"@babel/cli": "^7.12.17",
"@babel/core": "^7.12.17",
"@babel/plugin-transform-react-constant-elements": "^7.12.13",
"@babel/plugin-transform-react-display-name": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.12.17",
"@babel/preset-env": "^7.12.17",
"@babel/preset-react": "^7.12.13",
"@babel/register": "^7.12.13",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-jsx-remove-data-test-id": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^5.0.2",
"dotenv-webpack": "^6.0.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-no-inferred-method-name": "^2.0.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-unicorn": "^28.0.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.2.0",
"http-server": "^0.12.3",
"ignore-styles": "^5.0.1",
"markdownlint-cli": "^0.26.0",
"mini-css-extract-plugin": "^1.3.9",
"nodemon": "^2.0.7",
"npm-check": "^5.9.2",
"postcss": "^8.2.6",
"postcss-color-function": "^4.1.0",
"postcss-custom-media": "^8.0.0",
"postcss-global-import": "^1.0.6",
"postcss-loader": "^5.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.2.1",
"react-refresh": "^0.9.0",
"riteway": "^6.2.1",
"style-loader": "^2.0.0",
"stylelint": "^13.11.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"tap-nirvana": "^1.1.0",
"testcafe": "^1.11.0",
"url-loader": "^4.1.1",
"webpack": "^5.24.2",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^4.0.0-beta.0"
}
}