-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.28 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
{
"name": "nanopush",
"private": true,
"description": "A tiny push notification service",
"version": "0.0.0",
"license": "MIT",
"main": "index.js",
"author": "Rahat Ahmed",
"repository": "rahatarmanahmed/nanopush",
"scripts": {
"start": "cross-env NODE_ENV=development node index.js",
"start-prod": "cross-env NODE_ENV=production node index.js",
"lint": "standard",
"pretest": "npm run lint",
"test": "nyc ava"
},
"devDependencies": {
"ava": "^0.18.1",
"memdb": "^1.3.1",
"nyc": "^10.1.2",
"sinon": "^1.17.7",
"standard": "^8.6.0",
"supertest": "^3.0.0",
"xtend": "^4.0.1"
},
"dependencies": {
"async-to-gen": "^1.3.2",
"babel-preset-latest": "^6.22.0",
"babelify": "^7.3.0",
"bankai": "^5.2.1",
"bel": "^4.5.1",
"checkit": "^0.7.0",
"cross-env": "^3.1.4",
"envify": "^4.0.0",
"envobj": "^1.0.3",
"global": "^4.3.1",
"is-uuid": "^1.0.2",
"level": "^1.5.0",
"level-promisify": "^2.0.1",
"level-sublevel": "^6.6.1",
"localforage": "^1.4.3",
"micro": "^6.2.0",
"nanomorph": "^2.1.3",
"nanoraf": "^2.1.3",
"node-uuid": "^1.4.7",
"pino": "^3.3.2",
"server-router": "^4.0.2",
"sheetify": "^6.0.1",
"tachyons": "^4.6.1",
"web-push": "^3.2.1"
}
}