-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.35 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.35 KB
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
{
"name": "my-webpack-project",
"version": "1.0.0",
"description": "My webpack project",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"serve": "webpack serve",
"uplib": "npx npm-check-updates -u && npm i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kurehajime/typoscript.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kurehajime/typoscript/issues"
},
"homepage": "https://github.com/kurehajime/typoscript#readme",
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.28.6",
"@babel/preset-env": "^7.22.5",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.2",
"css-loader": "^6.8.1",
"html-webpack-plugin": "^5.5.3",
"jest": "^30.3.0",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.24",
"postcss-loader": "^7.3.3",
"prettier": "^3.8.1",
"tailwindcss": "^3.3.2",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.3"
},
"dependencies": {
"peggy": "^3.0.2"
}
}