-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.63 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
51
52
53
54
55
56
57
{
"name": "@shopware-ag/swag-app-system-package",
"version": "1.0.0",
"description": "App template which allows you to write your own apps for the Shopware AppSystem",
"scripts": {
"prepublishOnly": "npm run build",
"watch": "nodemon src/index.ts --ignore '*.json'",
"build": "tsc --project . -declaration",
"test": "jest --config jest.config.ts",
"test:watch": "jest --watchAll --config jest.config.ts",
"docs": "node_modules/.bin/typedoc --exclude \"**/*+(index|.spec|.e2e).ts\" --out ./docs --theme default"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"directories": {
"examples": "./examples",
"test": "./tests",
"docs": "./docs"
},
"files": [
"build/"
],
"keywords": [
"shopware",
"appsystem",
"apptemplate"
],
"author": "klarstil",
"repository": {
"type": "git",
"url": "https://github.com/klarstil/swag-app-system-package.git"
},
"license": "MIT",
"dependencies": {
"axios": "^0.21.0"
},
"devDependencies": {
"@types/express": "^4.17.9",
"@types/jest": "^26.0.15",
"@types/mongodb": "^3.5.33",
"@types/node": "^14.14.7",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"nodemon": "^2.0.6",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"typedoc": "^0.19.2",
"typescript": "^4.0.5"
},
"peerDependencies": {
"mongodb": "^3.6.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}