-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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
{
"name": "medusa-plugin-stats",
"version": "0.1.0",
"description": "A plugin to get store stastistics",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git"
},
"keywords": [
"medusa",
"medusajs",
"starter",
"typescript",
"plugin",
"ecommerce",
"e-commerce"
],
"author": "Anup Aglawe <[email protected]>",
"license": "MIT",
"scripts": {
"clean": "./node_modules/.bin/rimraf services/ models/ migrations/ api/ subscribers/ index.js index.map.js",
"build": "yarn clean && tsc -p tsconfig.json",
"watch": "tsc --watch",
"prepare": "yarn build",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"format": "prettier --write \"src/**/*.ts\" \"src/*.ts\" \"src/**/*.js\""
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.15",
"cross-env": "^7.0.3",
"prettier": "^2.7.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5"
},
"dependencies": {
"@medusajs/medusa": "^1.3.7",
"cors": "^2.8.5",
"date-fns": "^2.29.3",
"medusa-interfaces": "^1.3.3",
"typeorm": "^0.2.36"
}
}