This repository was archived by the owner on Jan 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.39 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.39 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
{
"name": "erb_example",
"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": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@tailwindcss/aspect-ratio": "^0.2.1",
"@tailwindcss/forms": "^0.3.3",
"@tailwindcss/line-clamp": "^0.2.1",
"@tailwindcss/typography": "^0.4.1",
"babel-loader": "^8.1.0",
"browser-sync": "^2.26.7",
"concurrently": "^5.2.0",
"css-loader": "^4.3.0",
"cssnano": "^5.0.6",
"cssnano-preset-advanced": "^5.1.3",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^1.3.1",
"postcss": "^8.3.0",
"postcss-loader": "^4.3.0",
"postcss-preset-env": "^6.7.0",
"tailwindcss": "^2.2.4",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.11",
"webpack-manifest-plugin": "^2.1.0"
},
"dependencies": {
"@hotwired/turbo": "^7.0.0-beta.8",
"stimulus": "^2.0.0"
}
}