-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·48 lines (48 loc) · 1.25 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
{
"name": "@laravel-streams/ui",
"version": "1.0.0",
"main": "./resources/public/js/index.js",
"scripts": {
"dev": "mix",
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"prod": "npm run production",
"production": "mix --production",
"clean": "rm -rf resources/public/*"
},
"streams": {
"output": {
"name": [
"streams",
"ui"
],
"type": "assign"
},
"src": "resources/lib",
"bundler": "mix",
"scripts": {
"dev": "dev",
"prod": "build",
"watch": "watch",
"test": "test"
}
},
"dependencies": {
"alpinejs": "^3.9.5",
"monaco-editor": "^0.35.0",
"morphdom": "^2.6.1",
"mousetrap": "^1.6.5"
},
"devDependencies": {
"@laravel-streams/mix-extension": "^1.0.0",
"@tailwindcss/forms": "^0.5.6",
"@tailwindcss/typography": "^0.5.10",
"laravel-mix": "^6.0.9",
"postcss": "^8.1",
"sass": "^1.27.0",
"sass-loader": "^8.0.0",
"tailwindcss": "^3.3.0"
}
}