forked from d3ward/toolz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.58 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
{
"name": "toolz",
"version": "3.0.0",
"description": "A set of accessible web tools",
"scripts": {
"dev": "webpack serve --config config/webpack.dev.js",
"build": "webpack --config config/webpack.prod.js",
"build-list": "node src/script/build_list.js",
"format": "prettier --write '**/*.{js,ts}'",
"lint": "eslint 'src/**/*.{js,ts}' && echo 'Linting complete!'",
"lint-fix": "eslint 'src/**/*.{js,ts}' --fix"
},
"author": "Eduard Ursu",
"license": "(CC BY-NC-SA 4.0)",
"bugs": {
"url": "https://github.com/d3ward/toolz/issues"
},
"dependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^5.0.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-webpack-plugin": "^4.0.0",
"file-loader": "^6.2.0",
"glob": "^9.3.4",
"glob-all": "^3.3.1",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.5",
"node-sass": "^8.0.0",
"postcss": "^8.4.21",
"prettier": "^2.8.7",
"purgecss-webpack-plugin": "^5.0.0",
"reachable-url": "^1.7.1",
"sass": "^1.61.0",
"sass-loader": "^13.2.2",
"style-loader": "^3.3.2",
"webpack-dev-server": "^4.13.2",
"webpack-merge": "^5.8.0"
},
"devDependencies": {
"ejs": "^3.1.9",
"template-ejs-loader": "^0.9.4",
"webpack": "^5.78.0",
"webpack-cli": "^5.0.1"
}
}