-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 980 Bytes
/
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
{
"name": "ummak",
"version": "1.0.7",
"description": "super simple api server based on json-server",
"main": "dist",
"scripts": {
"build": "rm -rf lib && tsc",
"lint": "eslint",
"test": "npm run build && NODE_ENV=TEST xv dist",
"publish": "yarn test && yarn lint && yarn build && npm publish"
},
"author": "MoonSupport",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"json-server": "^0.17.0",
"jsonwebtoken": "^8.5.1",
"tslib": "^2.3.1"
},
"devDependencies": {
"@types/json-server": "^0.14.4",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.1",
"tsc": "^2.0.3",
"typescript": "^4.4.4",
"xv": "^1.1.1"
},
"files": [
"dist",
"!dist/*.test.js"
]
}