-
Notifications
You must be signed in to change notification settings - Fork 173
/
Copy pathpackage.json
64 lines (64 loc) · 1.79 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": "lin-cms-koa",
"version": "0.3.11",
"description": "simple and practical CMS implememted by koa",
"main": "app/starter.js",
"scripts": {
"test": "jest test",
"start:dev": "cross-env NODE_ENV=development nodemon",
"start:prod": "cross-env NODE_ENV=production node index",
"prettier": "prettier --write app/**/*.js app/*.js app/**/**/*.js app/**/**/**/*.js test/**/*.js && eslint app test --fix"
},
"keywords": [
"lin",
"cms",
"koa"
],
"repository": {
"type": "git",
"url": "git+https://github.com/TaleLin/lin-cms-koa.git"
},
"author": "Pedro/Shirmy/Evan",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/register": "^7.8.6",
"@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",
"babel-jest": "^26.0.1",
"babel-preset-env": "^1.7.0",
"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.9.0",
"nodemon": "^1.18.10",
"prettier": "1.16.4",
"supertest": "^3.4.2"
},
"dependencies": {
"@koa/cors": "^2.2.3",
"crypto": "^1.0.1",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-mount": "^4.0.0",
"koa-static": "^5.0.0",
"lin-mizar": "^0.3.9",
"mysql2": "^2.1.0",
"sequelize": "^5.21.13",
"sharp": "^0.29.0",
"svg-captcha": "^1.4.0",
"validator": "^13.7.0",
"ws": "^7.4.4"
}
}