This repository has been archived by the owner on Jan 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
97 lines (97 loc) · 3.14 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "vue-component-database",
"description": "A web app for editing and sharing vue components.",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Laurin Quast",
"email": "laurinquast@googlemail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/n1ru4l/vue-component-database.git"
},
"scripts": {
"start": "cross-env NODE_ENV=production node ./src/server/main.js",
"build": "cross-env NODE_ENV=production webpack --config=webpack.config.js --hide-modules",
"watch:be": "nodemon --config=nodemon.json",
"watch:fe": "webpack-dev-server --config=webpack.config.js",
"lint": "eslint src --ext .js --ext .graphql --ext .vue --fix",
"generate:schema": "apollo-codegen introspect-schema src/server/api/schema.graphqls",
"test": "NODE_ENV=test jest",
"migrate:db": "knex migrate:latest"
},
"dependencies": {
"apollo-client": "^1.1.1",
"babel-runtime": "^6.23.0",
"babel-standalone": "^6.24.0",
"codemirror": "^5.25.2",
"common-tags": "^1.4.0",
"cross-env": "^4.0.0",
"dotenv": "^4.0.0",
"form-data": "^2.1.4",
"fs-promise": "^2.0.2",
"graphql": "^0.9.5",
"graphql-server-koa": "^0.7.2",
"graphql-tag": "^2.0.0",
"graphql-tools": "^0.11.0",
"http-vue-loader": "^1.2.0",
"isomorphic-fetch": "^2.2.1",
"knex": "^0.13.0",
"koa": "^2.2.0",
"koa-bodyparser": "^4.2.0",
"koa-router": "^7.1.1",
"koa-send": "^4.1.0",
"lodash": "^4.17.4",
"muse-ui": "^2.0.2",
"mysql": "^2.13.0",
"postcss": "^6.0.1",
"postcss-selector-parser": "^2.2.3",
"scope-css": "^1.0.4",
"vue": "^2.3.3",
"vue-apollo": "^2.1.0-beta.8",
"vue-codemirror": "^3.0.6",
"vue-codemirror-lite": "git://github.com/n1ru4l/vue-codemirror-lite.git#prop-value-change-behaviour",
"vue-router": "^2.5.3",
"vue-template-compiler": "^2.3.3",
"vue-template-es2015-compiler": "^1.5.2"
},
"devDependencies": {
"apollo-codegen": "^0.10.13",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.0",
"babel-loader": "^7.0.0",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-preset-stage-0": "^6.24.1",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.0",
"dotenv-cli": "^1.4.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-plugin-graphql": "^0.8.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-vue": "^2.0.1",
"extract-text-webpack-plugin": "^2.1.0",
"hard-source-webpack-plugin": "^0.3.12",
"jest": "^20.0.0",
"keycode": "^2.1.9",
"less": "^2.7.2",
"less-loader": "^4.0.3",
"node-object-hash": "^1.2.0",
"nodemon": "^1.11.0",
"optimize-css-assets-webpack-plugin": "^1.3.1",
"sqlite3": "^3.1.8",
"style-loader": "^0.17.0",
"sw-precache-webpack-plugin": "^0.9.2",
"to-ast": "^1.0.0",
"vue-loader": "^12.0.3",
"webpack": "^2.4.1",
"webpack-bundle-analyzer": "^2.6.0",
"webpack-dev-server": "^2.4.5"
}
}