-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 922 Bytes
/
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
{
"name": "vue-php",
"version": "1.0.0",
"description": "Easy routing and controller setup for small apps",
"main": "index.js",
"scripts": {
"start": "npm run build && cd public && php -S localhost:4242",
"build": "browserify -t vueify -e src/main.js -o public/build.js",
"watch": "watchify -t vueify -e src/main.js -o public/build.js"
},
"author": "Chris Hammock",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/crshmk/vue-php.git"
},
"keywords": [
"rest",
"api",
"vue",
"php",
"axios"
],
"bugs": {
"url": "https://github.com/crshmk/vue-php/issues"
},
"homepage": "https://github.com/crshmk/vue-php#readme",
"dependencies": {
"axios": "^0.18.0",
"vue": "^2.5.16",
"vue-router": "^3.0.1"
},
"devDependencies": {
"browserify": "^16.1.1",
"vueify": "^9.4.1",
"watchify": "^3.11.0"
}
}