-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.35 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
37
38
39
40
41
42
43
44
45
{
"name": "new-bridgetown-site",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "bundle exec bridgetown build",
"serve": "bundle exec bridgetown serve",
"webpack-build": "webpack --mode production",
"webpack-dev": "webpack --mode development -w",
"deploy": "yarn webpack-build && yarn build",
"sync": "node sync.js",
"start": "node start.js"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@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.12.7",
"@fullhuman/postcss-purgecss": "^2.3.0",
"babel-loader": "^8.2.2",
"bootstrap": "^4.5.0",
"browser-sync": "^2.26.13",
"concurrently": "^5.2.0",
"css-loader": "^3.4.2",
"cssnano": "^4.1.10",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^0.9.0",
"postcss-custom-properties": "^9.1.1",
"postcss-import": "^12.0.1",
"postcss-inline-svg": "^4.1.0",
"postcss-loader": "^3.0.0",
"postcss-nested": "^4.2.3",
"postcss-svgo": "^4.0.2",
"purgecss-webpack-plugin": "^2.3.0",
"style-loader": "^1.1.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-manifest-plugin": "^2.2.0",
"sass": "^1.32.8",
"sass-loader": "^8.0.2"
},
"dependencies": {
}
}