-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.14 KB
/
package.json
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
{
"name": "serverless-rails-com-bridgetown",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "yarn clean && yarn webpack-build && bundle exec bridgetown build && touch dist/.nojekyll",
"serve": "bundle exec bridgetown serve",
"clean": "bundle exec bridgetown clean",
"webpack-build": "webpack --mode production",
"webpack-dev": "webpack --mode development -w",
"release": "git subtree push --prefix dist origin gh-pages",
"sync": "node sync.js",
"start": "node start.js"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@tailwindcss/jit": "^0.1.1",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.1.0",
"browser-sync": "^2.26.7",
"concurrently": "^5.2.0",
"css-loader": "^4.3.0",
"css-minimizer-webpack-plugin": "^1.0.0",
"mini-css-extract-plugin": "^1.3.1",
"node-sass": "^6.0.1",
"postcss": "^8.2.8",
"postcss-loader": "^4.2.0",
"sass-loader": "^8.0.2",
"tailwindcss": "^2.2.19",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.11",
"webpack-manifest-plugin": "^2.1.0"
}
}