-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 905 Bytes
/
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
{
"name": "pair",
"version": "1.2.0",
"packageManager": "npm@10.7.0",
"type": "module",
"scripts": {
"start": "webpack serve --mode=development",
"build": "webpack --mode=production",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint": "eslint ."
},
"devDependencies": {
"circular-dependency-plugin": "^5.2.2",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"eslint": "^9.5.0",
"html-webpack-plugin": "^5.5.3",
"prettier": "^3.3.2",
"style-loader": "^4.0.0",
"ts-loader": "9",
"typescript": "^5.1.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"@drk4/utilities": "^6.0.0"
},
"prettier": {
"tabWidth": 4,
"singleQuote": true
}
}