-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.37 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
{
"name": "sockgen",
"version": "1.1.0",
"main": "index.js",
"private": "true",
"scripts": {
"test": "jest",
"build": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"serve": "webpack serve",
"prepare": "husky"
},
"author": "Keelan Rosa",
"license": "ISC",
"description": "Generate a sock knitting pattern",
"prettier": {
"overrides": [
{
"files": "*.js",
"options": {
"tabWidth": 4
}
}
]
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/preset-env": "^7.24.7",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@webpack-cli/generators": "^3.0.7",
"autoprefixer": "^10.4.20",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.9.1",
"postcss-loader": "^8.1.1",
"prettier": "^3.3.3",
"sass": "^1.79.5",
"sass-loader": "^16.0.2",
"style-loader": "^4.0.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"dependencies": {
"bootstrap": "^5.3.3",
"pdfmake": "^0.2.14"
}
}