-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 839 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 839 Bytes
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
{
"name": "writings",
"version": "1.0.0",
"description": "An offline application for taking notes",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "webpack --config webpack.prod.js",
"start": "webpack watch --config webpack.dev.js",
"start-dev": "webpack serve --open --config webpack.dev.js",
"format": "prettier --write ."
},
"keywords": [],
"author": "tangjm",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.23.3",
"css-loader": "^6.8.1",
"html-webpack-plugin": "^5.5.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "3.1.0",
"style-loader": "^3.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.10.0"
}
}