forked from area17/blast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.64 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
63
64
{
"name": "@area17/blast",
"version": "1.0.0",
"scripts": {
"dev": "npm run development",
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"prod": "npm run production",
"production": "mix --production",
"build-storybook": "build-storybook",
"storybook": "concurrently \"start-storybook --quiet -s $STORYBOOK_STATIC_PATH -p 6006\" \"npm run watch-components\" \"npm run watch-data\"",
"watch-components": "chokidar \"$COMPONENTPATH/**/*.blade.php\" -d 0 -c \"cd $PROJECTPATH && php artisan blast:generate-stories --watchEvent={event} -- '{path}';\"",
"watch-data": "chokidar \"$COMPONENTPATH/data/**/*.php\" \"$COMPONENTPATH/**/*.md\" -d 0 -c \"cd $PROJECTPATH && php artisan blast:generate-stories;\"",
"parse-tailwind": "node ./src/resolveTailwindConfig.js",
"prepare": "husky install",
"lint": "eslint --no-fix ./resources/**/*.js",
"lint:fix": "eslint --fix ./resources/**/*.js",
"stylelint": "stylelint",
"stylelint:all": "stylelint ./resources/**/*.css",
"prettier": "prettier",
"prettier:php": "prettier --write -- \"./src/**/*.php\""
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.13.14",
"@prettier/plugin-php": "^0.17.4",
"babel-loader": "^8.2.2",
"dotenv-webpack": "^7.0.3",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^7.0.0",
"laravel-mix": "^6.0.28",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"stylelint": "^13.12.0",
"stylelint-config-recommended": "^4.0.0",
"stylelint-order": "^4.1.0",
"stylelint-prettier": "^1.2.0"
},
"dependencies": {
"@etchteam/storybook-addon-status": "^4.0.0",
"@storybook/addon-a11y": "^6.4.9",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-links": "^6.4.9",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack5": "^6.4.9",
"@storybook/manager-webpack5": "^6.4.9",
"@storybook/server": "^6.4.9",
"chokidar-cli": "^3.0.0",
"concurrently": "^6.2.1",
"storybook-addon-designs": "^6.0.1",
"storybook-source-code-addon": "^1.2.0",
"tailwindcss": "^2.2.7"
},
"lint-staged": {
"*.js": "eslint --no-fix",
"*.css": "stylelint --fix",
"*.{js,css,md,php}": "prettier --write"
}
}