-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 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
{
"name": "shorten",
"version": "1.0.0",
"description": "The codebase for my open source project https://sqiz.me/, which is an URL Shortener service built on Lumen.",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"development": "mix",
"dev": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"production": "mix --production",
"prod": "mix --production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daika7ana/lumen-urlshortener.git"
},
"keywords": [],
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/daika7ana/lumen-urlshortener/issues"
},
"homepage": "https://github.com/daika7ana/lumen-urlshortener#readme",
"devDependencies": {
"axios": "^1.6.0",
"cross-env": "^7.0.3",
"laravel-mix": "^6.0.49",
"node-forge": "^1.3.1",
"postcss": "^8.4.31",
"resolve-url-loader": "^5.0.0",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"vue": "^2.7.15",
"vue-loader": "^15.11.1",
"vue-template-compiler": "^2.7.15"
},
"dependencies": {
"clipboard": "^2.0.11"
}
}