-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
91 lines (91 loc) · 2.84 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
{
"name": "@web-media/foundation",
"version": "0.0.0",
"license": "GPL-3.0-or-later",
"scripts": {
"build": "nx run-many --target=build",
"run:in": "nx run",
"bundle": "nx run-many --target=bundle",
"changelog": "changeset",
"version": "changeset version",
"version:beta": "changeset pre enter beta",
"version:prod": "changeset pre exit",
"publish:npm": "nx run-many --target=publish && changeset tag",
"publish:tag": "changeset tag",
"publish": "run-s -s publish:npm publish:tag",
"prepare": "husky install"
},
"devDependencies": {
"@changesets/cli": "^2.24.1",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@nrwl/cli": "14.5.2",
"@nrwl/eslint-plugin-nx": "14.5.2",
"@nrwl/jest": "14.5.2",
"@nrwl/js": "14.5.2",
"@nrwl/linter": "14.5.2",
"@nrwl/node": "^14.5.2",
"@nrwl/nx-cloud": "latest",
"@nrwl/web": "^14.5.2",
"@nrwl/workspace": "^14.5.2",
"@parcel/packager-ts": "^2.7.0",
"@parcel/transformer-typescript-types": "^2.7.0",
"@rollup/plugin-commonjs": "22.0.2",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-sucrase": "5.0.1",
"@types/jest": "^28.1.8",
"@types/node": "^18.7.15",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"@types/rollup-plugin-peer-deps-external": "^2.2.1",
"@types/styletron-engine-monolithic": "^0.0.0",
"@types/styletron-react": "^5.0.3",
"@types/styletron-standard": "^2.0.2",
"@typescript-eslint/eslint-plugin": "5.36.1",
"@typescript-eslint/parser": "5.36.1",
"archiver": "^5.3.1",
"eslint": "8.23.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "^8.0.0",
"jest": "27.5.1",
"npm-run-all": "^4.1.5",
"nx": "14.5.2",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.79.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-polyfill-node": "^0.10.2",
"ts-jest": "27.1.4",
"ts-node": "10.9.1",
"tslib": "^2.3.0",
"typescript": "4.9.3"
},
"packageManager": "[email protected]",
"dependencies": {
"baseui": "12.1.2",
"cross-env": "^7.0.3",
"styletron-engine-monolithic": "1.0.0",
"styletron-react": "6.1.0"
},
"resolutions": {
"@rollup/plugin-node-resolve": "15.0.1",
"@typescript-eslint/typescript-estree": "5.45.0",
"baseui": "12.1.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"styletron-engine-monolithic": "1.0.0",
"styletron-react": "6.1.0",
"sharp": "0.29.3"
},
"workspaces": [
"packages/*"
]
}