This repository has been archived by the owner on Mar 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
125 lines (125 loc) · 3.01 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "paperwork-service-users",
"version": "2.0.0",
"description": "OpenSource note-taking & archiving alternative to Evernote, Microsoft OneNote & Google Keep",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/twostairs/paperwork.git"
},
"main": "server/Server.js",
"scripts": {
"lint": "gulp lint",
"compile": "gulp build",
"test": "gulp lint && gulp flowtype && gulp build && gulp test",
"dev": "gulp | node_modules/bunyan/bin/bunyan",
"docs": "gulp docs",
"debug": "gulp debug | node_modules/bunyan/bin/bunyan",
"start": "gulp start",
"ava": "ava",
"flow": "flow"
},
"keywords": [
"paperwork",
"evernote",
"microsoft",
"onenote",
"google",
"keep",
"googlekeep",
"note",
"note-taking",
"archiving",
"paper",
"work",
"productivity",
"notebook",
"collection",
"remember",
"todo"
],
"author": {
"name": "The Paperwork Team",
"email": "[email protected]",
"url": "http://paperwork.rocks"
},
"contributors": [
{
"name": "Marius M.",
"email": "[email protected]",
"url": "https://twostairs.com"
}
],
"license": "AGPL-3.0",
"engines": {
"node": ">=8.5.0"
},
"ava": {
"require": "babel-register",
"babel": "inherit",
"files": [
"tests/**/*Test.js"
],
"source": [
"src/**/*.js"
]
},
"dependencies": {
"async-busboy": "^0.6.2",
"axios": "^0.18.0",
"bcrypt": "^1.0.3",
"bluebird": "^3.5.1",
"bunyan": "^1.8.12",
"cassandra-driver": "^3.4.1",
"dotenv": "^5.0.1",
"eventemitter2": "^5.0.1",
"http-status-codes": "^1.3.0",
"joi": "^13.1.2",
"jsonwebtoken": "^8.2.0",
"kcors": "^2.2.1",
"koa": "^2.5.0",
"koa-bodyparser": "^4.2.0",
"koa-passport": "^4.0.1",
"koa-router": "^7.4.0",
"lodash": "^4.17.5",
"moment-timezone": "^0.5.14",
"paperframe": "^2.0.7",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"documentation": "^6.1.0",
"eslint": "^4.18.2",
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-ava": "^4.5.1",
"eslint-plugin-flowtype": "^2.46.1",
"flow-bin": "^0.67.1",
"gulp": "^3.9.1",
"gulp-ava": "^0.18.0",
"gulp-babel": "^7.0.1",
"gulp-concat": "^2.6.1",
"gulp-develop-server": "^0.5.2",
"gulp-documentation": "^3.2.1",
"gulp-eslint": "^4.0.2",
"gulp-istanbul": "^1.1.3",
"gulp-jsdoc3": "^1.0.1",
"gulp-shell": "^0.6.5",
"gulp-sourcemaps": "^2.6.4",
"gulp-watch": "^5.0.0",
"isparta": "^4.0.0",
"jsdoc": "^3.5.5",
"jshint-sourcemap-reporter": "0.0.1",
"minami": "^1.2.3",
"nsp": "^3.2.1",
"nsp-formatter-checkstyle": "^1.0.2",
"rimraf": "^2.6.2",
"run-sequence": "^2.2.1",
"tmp": "0.0.33"
}
}