forked from TaleLin/lin-cms-koa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.35 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
{
"name": "lin-cms-koa",
"version": "0.2.0-beta.1",
"description": "simple and practical CMS implememted by koa",
"main": "app/starter.js",
"scripts": {
"start:dev": "cross-env NODE_ENV=development nodemon",
"start:prod": "cross-env NODE_ENV=production node app/starter.js",
"prettier": "prettier --write app/**/*.js app/*.js app/**/**/*.js app/**/**/**/*.js tests/**/*.js && eslint app tests --fix"
},
"keywords": [
"lin",
"cms",
"koa"
],
"author": "pedro",
"license": "MIT",
"devDependencies": {
"@types/eslint": "^4.16.6",
"@types/jest": "^24.0.11",
"@types/koa": "^2.0.48",
"@types/koa-bodyparser": "^4.2.2",
"@types/koa__cors": "^2.2.3",
"@types/prettier": "1.16.1",
"@types/supertest": "^2.0.7",
"cross-env": "^5.2.0",
"eslint": "^5.15.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.3.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.3.1",
"nodemon": "^1.18.10",
"prettier": "1.16.4",
"redis": "^2.8.0",
"supertest": "^3.4.2"
},
"dependencies": {
"@koa/cors": "^2.2.3",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-mount": "^4.0.0",
"koa-static": "^5.0.0",
"lin-mizar": "^0.2.0-beta.1"
}
}