-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.11 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
{
"name": "simply-rx-supplies-api",
"version": "1.0.0",
"description": "Simply RX Supplies API",
"main": "items.json",
"scripts": {
"start": "json-server --watch items.json",
"lint": "eslint . --ext ts,json",
"format": "eslint . --fix --ext ts,json",
"deploy": "gh-pages -d ."
},
"keywords": [],
"author": "Arya Emami <aryaemami59@yahoo.com> (https://github.com/aryaemami59)",
"license": "ISC",
"type": "module",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "^8.47.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsdoc": "^46.4.6",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsonc": "^2.9.0",
"eslint-plugin-prefer-arrow-functions": "^3.1.4",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"gh-pages": "^6.0.0",
"json-server": "^0.17.3",
"prettier": "^3.0.1",
"typescript": "^5.1.6"
}
}