-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.1 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
54
55
56
57
58
59
60
61
62
{
"name": "andrewm-codes-2",
"version": "0.0.1",
"private": true,
"scripts": {
"new:start": "nodemon --watch webpack.* --exec \"wp --mode development\"",
"new:build": "wp --mode production",
"build": "bundle exec bridgetown build",
"clean": "bundle exec bridgetown clean",
"clean:start": "yarn clean && node start.js",
"deploy": "yarn webpack:build && yarn build",
"prettier:check": "prettier --check \"./**/*.{js,json,yml}\"",
"prettier:format": "prettier --write \"./**/*.{js,json,yml}\"",
"serve": "bundle exec bridgetown serve",
"start": "node start.js",
"sync": "node sync.js",
"webpack:build": "webpack --mode production",
"webpack:dev": "webpack --mode development -w",
"overmind:dev": "overmind start",
"lint:css": "stylelint --fix '**/*.scss'"
},
"devDependencies": {
"@arkweid/lefthook": "^0.7.2",
"@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",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@fullhuman/postcss-purgecss": "^3.0.0",
"@tailwindcss/ui": "^0.6.2",
"autoprefixer": "^10.0.1",
"babel-loader": "^8.1.0",
"browser-sync": "^2.26.7",
"concurrently": "^5.2.0",
"css-loader": "^3.4.2",
"cssnano": "^4.1.10",
"file-loader": "^6.0.0",
"mini-css-extract-plugin": "^0.9.0",
"netlify-cms-proxy-server": "^1.3.6",
"postcss": "^8.1.1",
"postcss-import": "^12.0.1",
"postcss-loader": "^4.0.2",
"prettier": "^2.1.2",
"sidewind": "^3.2.0",
"speed-measure-webpack-plugin": "^1.3.3",
"style-loader": "^1.1.3",
"stylelint": "^13.7.2",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-prettier": "^1.1.2",
"tailwindcss": "^1.8.10",
"tailwindcss-debug-screens": "^1.1.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-manifest-plugin": "^2.2.0"
},
"peerDependencies": {
"postcss": "^8.1.0"
}
}