-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.05 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
{
"name": "n360-cms",
"private": true,
"description": "Network360 CMS",
"version": "0.1.0",
"dependencies": {
"@module-federation/typescript": "^3.1.1",
"concurrently": "^8.2.2",
"decap-cms-app": "^3.0.12",
"decap-server": "^3.0.1",
"elasticlunr": "^0.9.5",
"gatsby": "^4.25.7",
"gatsby-plugin-decap-cms": "^4.0.4",
"gatsby-plugin-federation": "^2.5.0",
"gatsby-source-filesystem": "^4.24.0",
"gatsby-transformer-json": "^4.25.0",
"html-webpack-plugin": "^5.5.4",
"marked": "^11.1.1",
"netlify-identity-widget": "^1.9.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom-v5-compat": "^6.22.3",
"ts-loader": "^9.5.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@types/elasticlunr": "^0.9.9",
"@types/jest": "^29.5.12",
"@types/netlify-identity-widget": "^1.9.6",
"@types/react-dom": "^18.2.19",
"eslint": "^8.57.0",
"eslint-config-react-app": "^7.0.1",
"husky": "^9.0.11",
"jest": "^29.5.12",
"lint-staged": "^15.2.2",
"prettier": "^2.7.1",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": ">=3.3.1 <5.2.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"homepage": "https://github.com/strenuus/n360-cms-content#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/strenuus/n360-cms-content.git"
},
"scripts": {
"build": "./build.sh",
"docker-build": "docker compose run --rm web ./build.sh",
"develop": "gatsby develop",
"bounce": "docker compose down --rmi all && docker compose up --build --detach",
"format": "prettier --write '**/*.{js,jsx,ts,tsx,json,yml,md}'",
"start": "concurrently -k 'decap-server' 'gatsby develop'",
"start:mf": "npm run clean && npm run build && npm run serve:mf",
"serve": "gatsby serve",
"serve:mf": "webpack serve --mode=development --config=config/webpack.config.ts",
"clean": "gatsby clean",
"test": "jest",
"prepare": "husky"
}
}