-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
34 lines (34 loc) · 1.13 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
{
"name": "playbook",
"private": true,
"scripts": {
"start": "npm run webpack:dev & npm run jekyll:dev",
"build": "npm run webpack:prod && npm run jekyll:build",
"webpack:dev": "webpack --mode development --watch",
"webpack:prod": "webpack --mode production",
"jekyll:dev": "sleep 5 && bundle exec jekyll serve",
"jekyll:build": "bundle exec jekyll build",
"lint": "npm run lint:css && npm run lint:js",
"lint:css": "npx stylelint \"src/_sass/**/*.scss\"",
"lint:css:fix": "npx stylelint \"src/_sass/**/*.scss\" --fix",
"lint:fix": "npm run lint:css:fix && npm run lint:js:fix",
"lint:js:fix": "standard --fix",
"lint:js": "standard"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^9.1.2",
"normalize.css": "8.0.1",
"standard": "^17.0.0",
"stylelint": "^16.0.2",
"stylelint-config-clean-order": "^7.0.0",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-selector-bem-pattern": "^4.0.0",
"webpack": "^5.76.0",
"webpack-cli": "^6.0.0"
},
"dependencies": {
"elasticlunr": "^0.9.5"
}
}