-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.83 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
{
"name": "fcecom-frontend-api-backend",
"version": "2.6.7",
"description": "FirstSpirit Connect for Commerce - Frontend API Backend",
"main": "dist/index.js",
"module": "dist/main.esm",
"types": "dist/main.types",
"type": "module",
"scripts": {
"clean": "rimraf dist",
"clean:full": "rm -rf build node_modules package-lock.json dist test-reports coverage",
"build": "tsc --project tsconfig.build.json && npx rollup -c rollup.config.ts",
"start": "npm run build && node .",
"start:watch": "concurrently \"npx tsc --watch\" \"npx rollup -c rollup.config.ts --watch\" \"nodemon -q dist/index.js\"",
"test": "echo \"Error: no test specified\" && exit 1",
"config:inspect": "node src/utils/inspectConfig.js",
"format": "prettier --write \"./**/*.{ts,js,json}\"",
"format:check": "prettier --config .prettierrc --check \"src/**/*.{ts,js,json}\""
},
"files": [
"package.json"
],
"author": "Crownpeak Technology GmbH",
"license": "Apache-2.0",
"dependencies": {
"chalk": "^5.3.0",
"cli-highlight": "^2.1.11",
"config": "^3.3.8",
"cors": "^2.8.5",
"diff": "^5.1.0",
"express": "^4.21.1",
"fcecom-frontend-api-server": "^1.3.2",
"joi": "^17.7.0",
"js-yaml": "^4.1.0",
"swagger-ui-express": "^5.0.0"
},
"devDependencies": {
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/config": "^3.3.3",
"@types/cors": "^2.8.17",
"@types/diff": "^5.0.8",
"@types/express": "^4.17.21",
"@types/node": "^20.10.3",
"@types/swagger-ui-express": "^4.1.6",
"concurrently": "^9.0.1",
"nodemon": "^3.1.7",
"prettier": "^2.6.2",
"rimraf": "^5.0.5",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^3.4.5"
}
}