-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.03 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
{
"name": "npmvs-server",
"version": "1.0.0",
"description": "The machinery that collects, analyzes, stores and serves data for NPMvs",
"main": "index.js",
"author": "Vianney Stroebel",
"private": true,
"scripts": {
"start": "node src/server.js",
"test": "jest"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/.archive/",
"<rootDir>/.git/",
"<rootDir>/.tmp/",
"<rootDir>/data/",
"<rootDir>/build/",
"<rootDir>/node_modules/"
]
},
"dependencies": {
"@koa/cors": "^2.2.2",
"axios": "^0.18.0",
"bluebird": "^3.5.2",
"changes-stream": "^2.2.0",
"date-fns": "^1.29.0",
"deep-eql": "^3.0.1",
"dotenv": "^6.0.0",
"fs-extra": "^7.0.0",
"koa": "^2.5.3",
"koa-router": "^7.4.0",
"lodash": "^4.17.11",
"mem": "^4.0.0",
"memoize-immutable": "^3.0.0",
"p-map": "^2.0.0",
"pg-promise": "^8.4.6",
"pino": "^5.7.0",
"ramda": "^0.25.0",
"stream-json": "^1.1.1"
},
"devDependencies": {
"jest": "^23.6.0"
}
}