-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
110 lines (110 loc) · 3.91 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
{
"private": true,
"version": "0.0.1",
"main": "index.js",
"license": "MIT",
"contributors": [
"Tomas Konrady <tomaskonrady@gmail.com>"
],
"scripts": {
"build": "yarn build:node-packages",
"start": "concurrently -k -n \"NODE,APP\" \"yarn start:node-packages\" \"yarn demo start\"",
"start:sidebar": "concurrently -k -n \"NODE,APP\" \"yarn start:node-packages\" \"yarn demo-sidebar start\"",
"build:node-packages": "lerna run build --ignore @fast-ai/storybook --ignore @fast-ai/demo-sidebar --ignore @fast-ai/demo",
"start:node-packages": "lerna run start --parallel --ignore @fast-ai/storybook --ignore @fast-ai/demo-sidebar --ignore @fast-ai/demo",
"lint": "yarn lint:pkg && yarn lint:js",
"lint:pkg": "npmPkgJsonLint .",
"lint:js": "eslint --cache --ignore-path .gitignore --ext .js ./",
"test": "jest",
"prepublishOnly": "yarn build:node-packages",
"prepare": "yarn build:node-packages",
"format": "prettier --ignore-path .gitignore --write '**/*.{js,json}' && yarn lint:js --fix",
"generate": "plop --plopfile \"./.plop/plopfile.js\"",
"storybook": "yarn workspace @fast-ai/storybook",
"demo": "yarn workspace @fast-ai/demo",
"demo-sidebar": "yarn workspace @fast-ai/demo-sidebar",
"ui-components": "yarn workspace @fast-ai/ui-components",
"gatsby-theme-fast-ai": "yarn workspace gatsby-theme-fast-ai",
"gatsby-theme-fast-ai-sidebar": "yarn workspace gatsby-theme-fast-ai-sidebar",
"gatsby-plugin-setup": "yarn workspace @fast-ai/gatsby-plugin-setup",
"gatsby-plugin-staged-fonts": "yarn workspace @fast-ai/gatsby-plugin-staged-fonts"
},
"resolutions": {
"gatsby": "^4.12.1",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"author": "Lundegaard a.s.",
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/eslint-parser": "7.17.0",
"@babel/eslint-plugin": "7.17.7",
"@babel/node": "^7.16.8",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.17.3",
"@babel/plugin-transform-object-assign": "^7.16.7",
"@babel/plugin-transform-react-constant-elements": "^7.17.6",
"@babel/plugin-transform-runtime": "^7.17.0",
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-replace": "^4.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.2.4",
"babel-plugin-istanbul": "^6.1.1",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-react-remove-properties": "^0.3.0",
"babel-plugin-tester": "^10.1.0",
"babel-plugin-transform-dev-warning": "^0.1.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"concurrently": "^5.1.0",
"core-js": "^3.6.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.5.0",
"eslint": "7.32.0",
"eslint-config-lundegaard": "^0.3.1",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-jest-formatting": "^3.0.0",
"eslint-plugin-react": "7.24.0",
"eslint-plugin-react-hooks": "4.2.0",
"fs-extra": "^10.0.1",
"glob": "^8.0.1",
"husky": "^4.2.3",
"jest": "^26.0.1",
"lerna": "^4.0.0",
"lint-staged": "^10.2.7",
"nodemon": "^2.0.4",
"npm-package-json-lint": "^4.5.0",
"npm-package-json-lint-config-default": "^2.0.0",
"plop": "^2.7.1",
"prettier": "^2.6.2",
"prop-types": "^15.8.1",
"ramda": "^0.27.0",
"ramda-extension": "^0.11.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.70.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-size-snapshot": "^0.12.0",
"rollup-plugin-terser": "^7.0.2"
},
"workspaces": [
"packages/*",
"apps/*"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS",
"pre-commit": "lint-staged",
"pre-push": "yarn lint && yarn test"
}
},
"packageManager": "yarn@3.2.0"
}