-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
85 lines (85 loc) · 2.3 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
{
"name": "dataface",
"description": "Build and manage data with a spreadsheet-like interface",
"author": "timwis <tim@timwis.com>",
"private": true,
"main": "server/index.js",
"browser": "client/src/main.js",
"scripts": {
"start": "run-p start:* --npm-path /usr/local/bin/yarn",
"start:server": "nodemon --watch server server/index.js",
"start:client": "budo client/src/main.js:dist/build.js --live --pushstate --dir client",
"build:client": "NODE_ENV=production browserify client/src/main.js -o client/dist/build.js",
"test": "run-s test:*",
"test:server": "NODE_ENV=test dredd",
"test:client": "ava test/client/**/*.spec.js",
"heroku-postbuild": "yarn run build:client"
},
"engines": {
"node": "7.7.x"
},
"dependencies": {
"auth0-lock": "^10.19.0",
"axios": "^0.16.1",
"bulma": "^0.4.2",
"kcors": "^2.2.1",
"knex": "^0.13.0",
"koa": "^2.2.0",
"koa-body": "^2.1.0",
"koa-json-schema": "^2.0.0",
"koa-passport": "^3.0.0",
"koa-redis": "^3.0.0",
"koa-router": "^7.2.0",
"koa-session": "^5.4.0",
"koa-static": "^3.0.0",
"koa2-history-api-fallback": "^0.0.5",
"lodash": "^4.17.4",
"passport-auth0": "^0.6.0",
"pg": "^6.2.4",
"postinstall-build-yarn": "^0.0.2",
"query-string": "^4.3.4",
"shortid": "^2.2.8",
"url-join": "^2.0.2",
"vue": "^2.0.1",
"vue-lil-context-menu": "^1.1.0",
"vue-router": "^2.5.3",
"vuex": "^2.3.1"
},
"devDependencies": {
"ava": "^0.19.1",
"babel-core": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babelify": "^7.3.0",
"browser-env": "^2.0.31",
"browserify": "^13.0.1",
"budo": "^10.0.3",
"dredd": "^3.5.1",
"localenvify": "^1.0.1",
"nodemon": "^1.11.0",
"npm-run-all": "^4.0.2",
"require-extension-hooks": "^0.2.0",
"require-extension-hooks-babel": "^0.1.1",
"require-extension-hooks-vue": "^0.3.1",
"tough-cookie": "^2.3.2",
"uglify-js": "^2.5.0",
"vueify": "^9.1.0",
"vuenit": "^0.4.2"
},
"ava": {
"require": [
"babel-register",
"./test/client/helpers/setup.js"
],
"source": [
"client/**/*.{js,vue}",
"!client/dist/**/*"
]
},
"browserify": {
"transform": [
"vueify",
"babelify",
"localenvify"
]
}
}