forked from Financial-Times/origami
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.81 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
{
"private": true,
"type": "module",
"name": "origami",
"version": "1.0.0",
"description": "the reference implementation of the FT's design system",
"scripts": {
"regenerate": "node ./scripts/regenerate-ci-config-files.js",
"install": "./scripts/install.bash",
"storybook": "cd apps/storybook && npm run storybook",
"build-storybook": "cd apps/storybook && npm run build-storybook",
"build": "./scripts/build-website.bash # this is for heroku, not people",
"start": "npx serve origami.ft.com # this is for heroku, not people",
"watch": "concurrently 'cd apps/website && npm run watch' 'cd apps/storybook && npm run watch-storybook' 'npx serve origami.ft.com'",
"create-component": "cd tools/create-component && create-component"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Financial-Times/origami.git"
},
"keywords": [
"origami",
"components"
],
"author": "chee <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Financial-Times/origami/issues"
},
"homepage": "https://github.com/Financial-Times/origami#readme",
"volta": {
"node": "16.13.0",
"npm": "8.5.4"
},
"engines": {
"node": "16.13.0",
"npm": "8.5.4"
},
"workspaces": [
"components/*",
"libraries/*",
"presets/*",
"tools/*",
"apps/storybook/addons/*",
"apps/*"
],
"devDependencies": {
"@babel/core": "^7.15.5",
"@esm-bundle/chai": "^4.3.4-fix.0",
"@lwc/eslint-plugin-lwc": "^1.1.1",
"@mdx-js/react": "^1.6.22",
"@open-wc/testing": "^3.0.3",
"@storybook/addon-docs": "^6.4.0-beta.22",
"@storybook/addon-essentials": "^6.4.0-beta.22",
"@testing-library/dom": "^8.0.0",
"@testing-library/user-event": "^13.1.9",
"chai": "^4.3.4",
"concurrently": "^6.3.0",
"decompress": "^4.2.1",
"eslint": "^7.32.0",
"eslint-config-origami-component": "^2.1.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsdoc": "^37.0.3",
"fetch-mock": "^9.11.0",
"mocha": "^8.3.2",
"prettier": "^2.3.2",
"proclaim": "^3.6.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"remark": "^13.0.0",
"remark-lint": "^7.0.1",
"remark-preset-lint-origami-component": "^2.0.0",
"sass-bin": "^1.43.2",
"serve": "^12.0.1",
"sinon": "^10.0.0",
"stylelint": "^13.12.0",
"stylelint-config-origami-component": "^1.0.4",
"stylelint-config-prettier": "^9.0.3"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@actions/github": "^4.0.0",
"@actions/io": "^1.0.2",
"@percy/cli": "^1.0.5",
"autoprefixer": "^10.4.2",
"del": "^6.0.0",
"fast-glob": "^3.2.7",
"globby": "^12.0.2",
"karma": "^6.3.16",
"mustache": "^4.2.0",
"react-syntax-highlighter": "^15.4.4",
"read-pkg": "^7.0.0",
"remark-cli": "^10.0.0",
"splitonce": "^0.1.2",
"toposort": "^2.0.2",
"undici": "^4.5.1",
"zx": "^4.1.1"
}
}