-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 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
53
54
55
56
57
{
"bin": {
"kid": "bin/index.js"
},
"name": "kidjs",
"version": "1.1.0-alpha.10",
"description": "Kidjs is a lightweight framework for server‑rendered",
"scripts": {
"test": "mocha -R spec --recursive",
"lint": "eslint .",
"validate": "npm ls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BoizZ/kidjs.git"
},
"keywords": [
"SSR",
"javascript",
"React",
"Koa",
"Node.js"
],
"main": "modules.js",
"author": "Heleth <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BoizZ/kidjs/issues"
},
"homepage": "https://kidjs.org",
"dependencies": {
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"koa": "^2.5.3",
"koa-body": "^4.0.4",
"koa-logger": "^3.2.0",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"lru-cache": "^4.1.3",
"next": "^7.0.2",
"node-sass": "^4.9.2",
"react": "^16.5.2",
"react-dom": "^16.5.2"
},
"devDependencies": {
"eslint": "^5.0.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"precommit-hook": "^3.0.0"
},
"pre-commit": [
"lint"
]
}