This repository has been archived by the owner on Dec 5, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.79 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
46
47
48
49
50
51
52
53
{
"name": "new-bridgetown-site",
"version": "1.0.0",
"private": true,
"scripts": {
"clean": "bundle exec bridgetown clean",
"clean:start": "yarn clean && node start.js",
"cms-dev": "yarn netlify-cms-proxy-server",
"build": "bundle exec bridgetown build",
"serve": "bundle exec bridgetown serve",
"webpack-build": "webpack --mode production",
"webpack-dev": "webpack --mode development -w",
"deploy": "NODE_ENV=production yarn webpack-build && yarn build",
"sync": "node sync.js",
"start": "node start.js",
"prettier:check": "prettier --check \"./**/*.{js,json,css,yml}\"",
"prettier:format": "prettier --write \"./**/*.{js,json,css,yml}\"",
"snapshot": "yarn percy snapshot output/"
},
"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",
"@fullhuman/postcss-purgecss": "^2.3.0",
"@tailwindcss/ui": "^0.3.1",
"autoprefixer": "^9.8.5",
"babel-loader": "^8.1.0",
"babel-plugin-prismjs": "^2.0.1",
"bridgetown-quick-search": "1.0.3",
"browser-sync": "^2.26.7",
"concurrently": "^5.2.0",
"css-loader": "^4.2.0",
"file-loader": "^6.0.0",
"mini-css-extract-plugin": "^0.9.0",
"netlify-cms-proxy-server": "^1.2.9",
"node-sass": "^4.13.1",
"percy": "^0.27.2",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.5",
"prismjs": "^1.20.0",
"sass-loader": "^8.0.2",
"stimulus": "^1.1.1",
"style-loader": "^1.1.3",
"tailwindcss": "^1.5.2",
"tailwindcss-debug-screens": "^1.0.0",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.11",
"webpack-manifest-plugin": "^2.2.0"
}
}