-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.38 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.38 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": "new-site",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "bundle exec bridgetown build",
"serve": "bundle exec bridgetown serve",
"clean": "bundle exec bridgetown clean",
"webpack-build": "webpack --mode production",
"webpack-dev": "webpack --mode development -w",
"deploy": "yarn clean && yarn webpack-build && yarn build",
"sync": "node sync.js",
"start": "node start.js"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.2.1",
"@tailwindcss/forms": "^0.3.3",
"@tailwindcss/typography": "^0.4.1",
"autoprefixer": "^10.3.3",
"browser-sync": "^2.26.7",
"concurrently": "^5.2.0",
"css-loader": "^4.3.0",
"esbuild": "^0.12.7",
"esbuild-loader": "^2.13.1",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^1.3.1",
"postcss": "^8.3.6",
"postcss-import": "^14.0.2",
"postcss-loader": "^6.1.1",
"purgecss": "^4.0.3",
"sass": "^1.32.8",
"sass-loader": "^8.0.2",
"tailwindcss": "^2.2.8",
"webpack": "^5.39.1",
"webpack-cli": "^4.7.2",
"webpack-manifest-plugin": "^3.1.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"babel-loader": "^8.2.2",
"stimulus": "^2.0.0"
}
}