forked from lookbook-hq/lookbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.87 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
65
66
67
68
69
70
71
72
{
"name": "lookbook",
"version": "0.7.3",
"description": "A native development UI for ViewComponent",
"targets": {
"app": {
"source": [
"./app/assets/lookbook/js/embed.js",
"./app/assets/lookbook/js/app.js",
"./app/assets/lookbook/css/app.css"
],
"distDir": "./public/lookbook-assets"
}
},
"scripts": {
"dev": "parcel watch",
"build": "parcel build --no-cache",
"clean": "rm -rf .parcel-cache",
"lint:fix": "standardrb --fix && prettier --write .",
"release": "release-it",
"release:dry-run": "release-it --dry-run"
},
"author": "Mark Perkins",
"license": "MIT",
"devDependencies": {
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/typography": "^0.5.0",
"autoprefixer": "^10.4.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"parcel": "^2.0.1",
"postcss": "^8.4.5",
"postcss-import": "^14.0.2",
"prettier": "2.3.2",
"release-it": "^14.11.6",
"tailwindcss": "^3.0.6"
},
"dependencies": {
"@alpinejs/morph": "^3.9.1",
"@alpinejs/persist": "^3.9.1",
"@github/hotkey": "^1.6.0",
"@rails/actioncable": "^6.1.4",
"@ryangjchandler/alpine-tooltip": "^0.1.2",
"alpinejs": "^3.9.1",
"debounce": "^1.2.1",
"iframe-resizer": "^4.3.2",
"split-grid": "^1.0.11",
"tippy.js": "^6.3.2"
},
"release-it": {
"git": {
"commitMessage": "release v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
},
"hooks": {
"before:init": [
"bundle install",
"rake test"
],
"after:bump": "npm run build",
"after:version:bump": "rake 'lookbook:release:bump_version[${version}]' && bundle",
"after:release": "rake 'lookbook:release:build_and_push'"
}
}
}