-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.53 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
{
"name": "codetogo",
"private": false,
"devDependencies": {
"algoliasearch": "^3.35.1",
"browser-sync": "^2.26.12",
"browser-sync-webpack-plugin": "^2.0.1",
"cross-env": "^3.2.3",
"extra-watch-webpack-plugin": "^1.0.3",
"hasbin": "^1.2.3",
"husky": "^0.14.3",
"laravel-mix": "^5.0.4",
"lint-staged": "^7.3.0",
"node-cmd": "^3.0.0",
"prettier": "^1.19.1",
"rrssb": "^1.14.0",
"sass": "^1.26.10",
"sass-loader": "^7.1.0",
"vue-template-compiler": "^2.6.11",
"yaml-front-matter": "^4.1.0",
"yargs": "^4.6.0"
},
"scripts": {
"local": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --env=local --config=node_modules/laravel-mix/setup/webpack.config.js",
"staging": "cross-env NODE_ENV=staging node_modules/webpack/bin/webpack.js --progress --hide-modules --env=staging --config=node_modules/laravel-mix/setup/webpack.config.js",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --env=production --config=node_modules/laravel-mix/setup/webpack.config.js",
"dev": "npm run local",
"prod": "npm run production",
"watch": "npm run local -- --watch",
"sync": "node tasks/algolia-sync.js",
"precommit": "lint-staged",
"netlify-build": "npm run prod && npm run sync"
},
"lint-staged": {
"source/_jsusecases/*.md": [
"prettier --write",
"git add"
],
"source/_reactusecases/*.md": [
"prettier --write",
"git add"
]
}
}