-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.11 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
{
"name": "web-starter",
"version": "1.0.0",
"description": "",
"main": "src/main.ts",
"scripts": {
"init": "sh .bin/init.sh",
"stop": "sh .bin/stop.sh",
"stop:docker": "docker compose -f config/docker/compose.yml down && npm run stop",
"start": "webpack serve --env=development --config ./config/webpack.config.cjs",
"start:docker": "npm run init && npm install && docker compose -f config/docker/compose.yml up -d",
"clean": "rm -rf build",
"build:dev": "webpack --config ./config/webpack.config.cjs --env=development",
"build:prod": "npm run clean && webpack -c ./config/webpack.config.cjs --env=production",
"lint:ts": "eslint --config ./config/.eslintrc.cjs --ignore-path ./config/.eslintignore src",
"lint:styles": "stylelint --config ./config/.stylelintrc --ignore-path ./config/.stylelintignore src"
},
"sideEffects": [
"*.css",
"*.scss"
],
"keywords": [],
"author": {
"name": "Abhishek Singh",
"email": "[email protected]",
"url": "https://abhishekxix.com/"
},
"license": "MIT",
"devDependencies": {
"@fullhuman/postcss-purgecss": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@wordpress/prettier-config": "^3.6.0",
"@wordpress/stylelint-config": "^21.32.0",
"autoprefixer": "^10.4.17",
"css-loader": "^6.9.0",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.7.7",
"postcss": "^8.4.33",
"postcss-loader": "^8.0.0",
"postcss-scss": "^4.0.9",
"prettier": "^3.2.4",
"sass": "^1.69.7",
"sass-loader": "^14.0.0",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.5",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-notifier": "^1.15.0"
},
"dependencies": {
"normalize.css": "^8.0.1"
}
}