-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 856 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 856 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": "learning-js",
"version": "0.0.1",
"description": "learning-basic-js ",
"private": true,
"type": "module",
"scripts": {
"start": "webpack serve --mode=development --open",
"style": "npx tailwindcss -i ./src/style.css -o ./dist/index.css --watch",
"build": "npx webpack --config webpack.config.js && npx tailwindcss -o ./dist/index.css --minify"
},
"author": "pphatdev",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^10.4.17",
"copy-webpack-plugin": "^12.0.2",
"html-webpack-plugin": "^5.6.0",
"postcss": "^8.4.35",
"postcss-loader": "^8.1.0",
"postcss-preset-env": "^9.3.0",
"tailwindcss": "^3.4.1",
"webpack": "^5.90.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.2"
},
"dependencies": {
"lodash": "^4.17.21",
"tsparticles": "^3.0.2"
}
}