-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.43 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
{
"name": "endpoints",
"version": "1.0.0",
"description": "View and send custom responses to requests on HTTP endpoints",
"main": "index.js",
"scripts": {
"prebuild": "rm -rf src/static/build",
"build": "webpack --progress",
"build:watch": "npm run build -- --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uncaughtxcptn/endpoints.git"
},
"author": "Arnelle Balane <arnellebalane@gmail.com> (https://arnellebalane.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/uncaughtxcptn/endpoints/issues"
},
"homepage": "https://github.com/uncaughtxcptn/endpoints#readme",
"devDependencies": {
"babel-core": "6.26.3",
"babel-loader": "7.1.4",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "1.6.1",
"babel-register": "6.26.0",
"css-loader": "0.28.11",
"file-loader": "1.1.11",
"uglifyjs-webpack-plugin": "1.2.5",
"url-loader": "1.0.1",
"vue-loader": "15.0.5",
"vue-style-loader": "4.1.0",
"vue-template-compiler": "2.5.16",
"webpack": "4.6.0",
"webpack-cli": "2.1.2"
},
"dependencies": {
"date-fns": "1.29.0",
"vue": "2.5.16",
"vue-analytics": "5.10.4",
"vue-router": "3.0.1",
"vuex": "3.0.1"
},
"babel": {
"presets": [
"env"
],
"plugins": [
"transform-object-rest-spread"
]
}
}