-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.32 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
{
"name": "nix-api",
"version": "1.0.12",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "node lib/index.js",
"start:dev": "nodemon lib/index.js",
"build": "babel src -d lib",
"build:watch": "babel src -d lib --watch",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"repository": "https://github.com/raphaelkieling/Nix",
"bin": "./bin/nix",
"files": [
"bin/",
"lib/"
],
"keywords": [
"fast",
"api",
"service",
"nix",
"nixjs",
"apis",
"speed"
],
"tags": [
"fast",
"api",
"service",
"nix",
"nixjs",
"apis",
"speed"
],
"devDependencies": {
"babel-plugin-module-resolver": "^3.2.0",
"nodemon": "^1.18.10",
"prettier": "^1.16.4",
"vuepress": "^0.14.9"
},
"dependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.4",
"body-parser": "^1.18.3",
"chalk": "^2.4.2",
"chokidar": "^2.1.2",
"clear": "^0.1.0",
"cli-spinner": "^0.2.8",
"commander": "^2.19.0",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"figlet": "^1.2.1",
"fs-readdir-recursive": "^1.1.0",
"markdown-it-task-lists": "^2.1.1",
"marked": "^0.6.1",
"ncp": "^2.0.0"
}
}