-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.63 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
{
"name": "@fdmg/css-grid",
"version": "2.0.41",
"description": "FDMG CSS Grid with Flexbox fallback",
"style": "css/grid.css",
"types": "GridContainer.d.ts",
"main": "GridContainer.js",
"scripts": {
"build": "next build",
"build:ci": "npm run webpack:prod && npm run release:grid && npm run release:flex && npm run copy:dts",
"copy:dts": "npx copyfiles -V -f \"./dist.d.ts/components/GridContainer.d.ts\" \"./dist\"",
"dev": "next dev",
"lint": "next lint",
"prettier": "prettier -c **/*.ts?",
"json-to-scss": "json-to-scss public/assets/design-tokens/* src/design-tokens",
"release:grid": "sass --no-source-map --style=compressed scss/grid.scss dist/css/grid.css",
"release:flex": "sass --no-source-map --style=compressed scss/flex.scss dist/css/flex.css",
"start": "next start",
"test": "echo \"No tests specified\" && exit 0",
"webpack:prod": "npx cross-env NODE_ENV=production webpack --mode=production"
},
"author": "Willem Liu",
"license": "ISC",
"repository": {
"type": "git",
"url": "[email protected]:FDMediagroep/fdmg-css-grid.git"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@fdmg/design-system": "^0.60.39",
"@types/fetch-jsonp": "^1.1.0",
"@types/micro-cors": "^0.1.5",
"@types/node": "^22.5.4",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@types/xmldom": "^0.1.34",
"@webcomponents/webcomponentsjs": "^2.8.0",
"@xmldom/xmldom": "^0.8.10",
"autoprefixer": "^10.4.20",
"copy-webpack-plugin": "^12.0.2",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"date-input-polyfill": "^2.14.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.8",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"fetch-jsonp": "^1.3.0",
"js-cookie": "^3.0.5",
"json-to-scss": "^1.6.2",
"micro-cors": "^0.1.1",
"mini-css-extract-plugin": "^2.9.1",
"next": "^14.2.8",
"nookies": "^2.5.2",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^8.1.1",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^10.0.2",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass": "^1.77.8",
"sass-loader": "^16.0.1",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
}
}