This repository was archived by the owner on Sep 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
71 lines (71 loc) · 1.79 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
{
"name": "@staticcms/proxy-server",
"description": "Proxy server to be used with Static CMS proxy backend",
"version": "4.0.4",
"repository": "https://github.com/staticjscms/static-cms-proxy-server",
"bugs": "https://github.com/staticjscms/static-cms-proxy-server/issues",
"license": "MIT",
"main": "dist/index",
"keywords": [
"@staticcms",
"staticcms",
"static-cms",
"backend",
"proxy"
],
"sideEffects": false,
"scripts": {
"build": "webpack",
"develop:run": "ts-node --files src/index.ts",
"develop": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec yarn develop:run",
"prepublishOnly": "yarn build",
"prestart": "yarn build",
"start": "node dist/index.js",
"test:coverage": "yarn test --coverage",
"test:watch": "yarn test --watch",
"test": "jest"
},
"dependencies": {
"async-mutex": "0.4.0",
"cors": "2.8.5",
"dotenv": "16.0.3",
"express": "4.18.2",
"joi": "17.8.4",
"morgan": "1.10.0",
"simple-git": "3.20.0",
"what-the-diff": "0.6.0",
"winston": "3.8.2"
},
"devDependencies": {
"@types/cors": "2.8.13",
"@types/express": "4.17.17",
"@types/jest": "29.4.1",
"@types/morgan": "1.9.4",
"@types/node": "16.18.25",
"jest": "29.5.0",
"nodemon": "2.0.21",
"prettier": "2.8.4",
"ts-jest": "29.0.5",
"ts-loader": "9.4.2",
"ts-node": "10.9.1",
"tsconfig-paths-webpack-plugin": "4.0.1",
"typescript": "4.9.5",
"webpack": "5.76.2",
"webpack-cli": "5.0.1",
"webpack-node-externals": "3.0.0"
},
"engines": {
"node": ">=v14"
},
"bin": {
"static-cms-proxy-server": "./dist/index.js"
},
"files": [
"src/",
"dist/"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}