-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.36 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
{
"name": "vanilla_jigsaw",
"version": "0.0.1",
"description": "simple jigsaw sketch using vanilla js and css3",
"scripts": {
"prebuild": "npm run format",
"build": "webpack",
"fix-code": "prettier-eslint --write 'src/**/*.{ts,js}'",
"fix-styles": "prettier-stylelint --write 'src/**/*.{scss}'",
"format": "prettier --write .",
"lint": "eslint ./src --ext .ts",
"start": "webpack serve --mode development --env development",
"pretest": "npm run lint",
"watch": "webpack --watch",
"webpack-prod": "npm run pretest && webpack --env production"
},
"devDependencies": {
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.6.0",
"eslint": "^8.9.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.5.3",
"node-sass": "^7.0.1",
"prettier": "^2.5.1",
"prettier-eslint": "^13.0.0",
"prettier-eslint-cli": "^5.0.1",
"prettier-stylelint": "^0.4.2",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"webpack": "^5.69.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^3.11.3",
"webpack-merge": "^5.8.0"
},
"engines": {
"node": ">=10.13.0",
"yarn": "use npm instead"
}
}