This repository has been archived by the owner on Jan 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
102 lines (102 loc) · 4.01 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
{
"name": "@fdmg/bnr-design-system",
"version": "0.1.9",
"description": "BNR Design System",
"publishConfig": {
"access": "public"
},
"types": "main.d.ts",
"main": "main.js",
"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 bnr-design-system .",
"docker:logs": "docker logs bnr-design-system",
"docker:pull": "docker pull ghcr.io/fdmediagroep/bnr-design-system:latest",
"docker:run": "docker run -d -p 3000:3000 --env-file .env --name bnr-design-system bnr-design-system",
"docker:restart": "docker restart bnr-design-system",
"docker:stop": "docker stop bnr-design-system && docker rm bnr-design-system && docker image prune -f",
"docker:tag": "docker tag ghcr.io/fdmediagroep/bnr-design-system:latest bnr-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 build && next start",
"test": "jest --passWithNoTests",
"test:updateSnapshots": "jest -u --passWithNoTests",
"typedoc": "typedoc",
"vc:rm": "vc rm bnr-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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FDMediagroep/bnr-design-system.git"
},
"author": "Willem Liu",
"license": "ISC",
"bugs": {
"url": "https://github.com/FDMediagroep/bnr-design-system/issues"
},
"homepage": "https://github.com/FDMediagroep/bnr-design-system#readme",
"devDependencies": {
"@fdmg/css-grid": "^2.0.13",
"@fdmg/resubstitute": "^0.1.2",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.0",
"@types/markdown-it": "^12.2.3",
"@types/node": "^17.0.8",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"autoprefixer": "^10.4.2",
"copy-webpack-plugin": "^10.2.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"css-loader": "^6.5.1",
"eslint-config-next": "^12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"fetch-jsonp": "^1.2.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.4.7",
"json-to-scss": "^1.6.2",
"markdown-it": "^12.3.2",
"micro-cors": "^0.1.1",
"mini-css-extract-plugin": "^2.4.6",
"path-to-regexp": "^6.2.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^6.2.1",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^7.2.0",
"prettier": "^2.5.1",
"pretty": "^2.0.0",
"raw-loader": "^4.0.2",
"react-element-to-jsx-string": "^14.3.4",
"sass": "^1.47.0",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"svgo": "^2.8.0",
"svgo-loader": "^3.0.0",
"ts-jest": "^27.1.2",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"typedoc": "^0.22.10",
"typescript": "^4.5.4",
"webpack": "^5.66.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"next": "^12.0.7",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}