-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.29 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "fcecom-frontend-api-client",
"version": "1.3.1",
"description": "FirstSpirit Connect for Commerce - Frontend API Client",
"main": "dist/bundle.js",
"module": "dist/bundle.js",
"types": "dist/types",
"scripts": {
"clean": "rimraf dist",
"ci": "npm ci",
"build:dev": "npx webpack --env=mode=dev",
"build:watch": "npx webpack --env=mode=watch",
"start": "npm run build:watch",
"build": "npx webpack --env=mode=build ",
"format": "prettier --write \"src/**/*.{ts,js,json}\"",
"format:check": "prettier --config .prettierrc --check \"src/**/*.{ts,js,json}\"",
"lint": "eslint",
"test": "jest --silent",
"test:ci": "jest --ci --reporters=default --reporters=jest-junit",
"pack": "npm run build && npm pack",
"typedoc": "npx typedoc",
"typedoc:watch": "npx typedoc --watch"
},
"jest-junit": {
"outputName": "../../test-reports/client.xml"
},
"repository": {
"type": "git",
"url": "https://github.com/e-Spirit/fcecom-frontend-api-client"
},
"files": [
"dist",
"package.json"
],
"author": "Crownpeak Technology GmbH",
"license": "Apache-2.0",
"dependencies": {
"tslib": "^2.4.1"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.2.4",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"eslint": "^8.30.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"jest-junit": "^15.0.0",
"jest-mock-extended": "^3.0.1",
"js-doc": "^0.5.0",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"rollup": "^2.79.2",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.2",
"typedoc": "^0.24.8",
"typedoc-plugin-markdown": "^3.15.3",
"typescript": "^4.9.4",
"webpack": "^5.95.0",
"webpack-cli": "^5.0.1",
"webpack-merge": "^5.8.0"
},
"jest": {
"automock": false,
"restoreMocks": true,
"clearMocks": true,
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*"
],
"coveragePathIgnorePatterns": [
".meta.ts",
".d.ts"
],
"resetMocks": false,
"preset": "ts-jest",
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"node_modules",
"dist"
]
}
}