-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
50 lines (50 loc) · 1.49 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
47
48
49
50
{
"name": "@medusa-plugins/medusa-plugins",
"private": true,
"version": "0.0.0",
"description": "A collection of awesome plugins for medusa and medusa-extender 🚀",
"engines": {
"node": ">14.17.3"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"build": "./node_modules/.bin/lerna run --parallel build",
"bootstrap": "./node_modules/.bin/lerna bootstrap",
"clean": "./node_modules/.bin/lerna run --parallel clean",
"release": "./node_modules/.bin/lerna publish",
"watch": "./node_modules/.bin/lerna run watch",
"test": "./node_modules/.bin/lerna run test",
"test:local": "./node_modules/.bin/lerna run test:local",
"lint": "./node_modules/.bin/eslint 'packages/**' --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adrien2p/medusa-plugins.git"
},
"author": "Adrien de Peretti <[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/adrien2p/medusa-plugins/issues"
},
"homepage": "https://github.com/adrien2p/medusa-plugins#readme",
"dependencies": {
"rimraf": "^3.0.1"
},
"devDependencies": {
"lerna": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.0",
"tslint": "~6.1.0",
"typescript": "^4.5.5"
}
}