-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.69 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.69 KB
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
65
66
67
68
69
70
71
{
"name": "TactJam-server",
"version": "0.0.1",
"description": "Server to store and manage tactons for the TactJam GUI client",
"main": "/src/app.js",
"repository": "https://github.com/TactileVision/TactJam-server",
"author": "Chris <dev@schnitzel.app>",
"license": "MIT",
"type": "module",
"scripts": {
"start": "node src/app.js",
"dev": "nodemon src/app.js",
"lint": "eslint --fix src && prettier --write \"src/**/*.js\""
},
"dependencies": {
"@koa/cors": "^3.1.0",
"axios": "^0.21.1",
"dotenv": "^8.2.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.1",
"koa-body": "^4.2.0",
"koa-jwt": "^4.0.0",
"koa-pino-logger": "^3.0.0",
"koa-router": "^10.0.0",
"koa2-swagger-ui": "^5.0.5",
"secure-password": "^4.0.0",
"swagger-jsdoc": "^6.0.1",
"uuid": "^8.3.2",
"validator": "^13.5.2"
},
"devDependencies": {
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^4.3.7",
"lint-staged": "^10.5.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1"
},
"eslintConfig": {
"env": {
"es2020": true,
"node": true
},
"extends": [
"standard",
"prettier"
],
"parserOptions": {
"ecmaVersion": 11,
"sourceType": "module"
},
"rules": {}
},
"prettier": {
"singleQuote": false
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}