-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.21 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
{
"name": "ecom-client-ts",
"version": "1.0.0",
"private": true,
"author": "Burak T <burak.tabn@gmail.com>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"clean:build": "npm run clean && npm run build",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore ."
},
"exports": {
".": "./dist/api/index.js",
"./product": "./dist/api/product.js",
"./auth": "./dist/api/auth.js",
"./blog_post": "./dist/api/blog_post.js",
"./orders": "./dist/api/orders.js",
"./rbac": "./dist/api/rbac.js",
"./user": "./dist/api/user.js",
"./openapi": "./dist/api/openapi.js",
"./types": "./dist/api/types.js",
"./shopping_cart": "./dist/shopping_cart.js"
},
"dependencies": {
"axios": "^1.6.8",
"jwt-decode": "^4.0.0",
"next": "^14.1.4",
"openapi-client-axios": "^7.5.4",
"react": "^18.2.0",
"zustand": "^4.5.2"
},
"devDependencies": {
"@types/node": "^20.12.4",
"@types/react": "^18.2.74",
"prettier": "3.2.5",
"supertest": "^6.3.4",
"typescript": "^5.4.3"
}
}