-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
126 lines (126 loc) · 4.59 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@fdmg/design-system",
"version": "0.60.27",
"description": "FD Design System",
"types": "main.d.ts",
"main": "main.js",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git@github.com:FDMediagroep/fd-design-system.git"
},
"scripts": {
"build": "next build",
"build:ci": "npm run build && npm run build:npm",
"build:npm": "npm run webpack:prod && npm run copy:dts",
"build:sls": "cross-env SERVERLESS=true next build",
"copy:dts": "copyfiles \"./dist.d.ts/src/**/*.d.ts\" \"./dist\" -V -u 2",
"dev": "next dev",
"docker:build": "docker build -t fd-design-system .",
"docker:logs": "docker logs fd-design-system",
"docker:pull": "docker pull ghcr.io/fdmediagroep/fd-design-system:latest",
"docker:run": "docker run -d -p 3000:3000 --env-file .env --name fd-design-system fd-design-system",
"docker:restart": "docker restart fd-design-system",
"docker:stop": "docker stop fd-design-system && docker rm fd-design-system && docker image prune -f",
"docker:tag": "docker tag ghcr.io/fdmediagroep/fd-design-system:latest fd-design-system:latest",
"lint": "next lint",
"json-to-scss": "json-to-scss public/assets/design-tokens/* src/design-tokens",
"prettier": "prettier -c **/*.ts?",
"start": "next start",
"test": "jest --passWithNoTests",
"test:updateSnapshots": "jest -u --passWithNoTests",
"test:watch": "jest --watch",
"vc:rm": "vc rm fd-design-system --safe --yes",
"webpack:prod": "cross-env NODE_ENV=production webpack --mode=production",
"webpack-bundle-analyzer:npm": "cross-env WEBPACK_BUNDLE_ANALYZER=true npm run webpack:prod",
"webpack-bundle-analyzer:next": "cross-env WEBPACK_BUNDLE_ANALYZER=true next build"
},
"author": "Willem Liu",
"license": "ISC",
"devDependencies": {
"@fdmg/article-xml-json": "^2.0.57",
"@fdmg/css-grid": "^2.0.51",
"@fdmg/resubstitute": "^0.1.37",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/cssbeautify": "^0.3.5",
"@types/fetch-jsonp": "^1.1.2",
"@types/jest": "^29.5.14",
"@types/js-cookie": "^3.0.6",
"@types/markdown-it": "^14.1.2",
"@types/micro-cors": "^0.1.5",
"@types/node": "^22.10.1",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/react-imgix": "^9.5.3",
"autoprefixer": "^10.4.20",
"copy-webpack-plugin": "^12.0.2",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"cssbeautify": "^0.3.1",
"eslint": "^8.57.1",
"eslint-config-next": "15.0.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-prettier": "^5.2.1",
"fetch-jsonp": "^1.3.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"json-to-scss": "^1.6.2",
"markdown-it": "^14.1.0",
"micro-cors": "^0.1.1",
"mini-css-extract-plugin": "^2.9.2",
"next": "15.0.3",
"nookies": "^2.5.2",
"path-to-regexp": "^7.1.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^8.1.1",
"postcss-normalize": "^13.0.1",
"postcss-preset-env": "^10.1.1",
"prettier": "^3.4.2",
"pretty": "^2.0.0",
"punycode": "^2.3.1",
"raw-loader": "^4.0.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-element-to-jsx-string": "^15.0.0",
"react-svg-loader": "^3.0.3",
"sass": "^1.81.0",
"sass-loader": "^16.0.3",
"style-loader": "^4.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"js-cookie": "^3.0.5",
"react-imgix": "^9.10.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"ie 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"last 1 edge version",
"ie 11"
]
},
"overrides": {
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1"
}
}