forked from modernpoacher/shinkansen-cogs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.53 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
111
112
113
{
"name": "@modernpoacher/cogs",
"version": "0.1.205",
"description": "Cogs",
"keywords": [
"Cogs",
"React"
],
"main": "./src/index.cjs",
"type": "module",
"types": "./index.d.mts",
"author": {
"name": "Jonathan Perry for Modern Poacher Limited",
"email": "[email protected]",
"url": "https://modernpoacher.com"
},
"license": "ISC",
"engines": {
"node": ">=18.12.0"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/modernpoacher/cogs.git"
},
"scripts": {
"build": "cross-env DEBUG=@modernpoacher/cogs* webpack",
"build-storybook": "storybook build",
"build:watch": "cross-env DEBUG=@modernpoacher/cogs* webpack --watch",
"lint": "eslint",
"lint:fix": "npm run lint -- --fix",
"nvm": "bash nvm.sh",
"prelint": "npm run nvm",
"prepare": "husky",
"prepublishOnly": "cross-env NODE_ENV=production npm run build",
"prestorybook": "npm run build && npm run transform",
"pretest": "npm run nvm",
"storybook": "storybook dev -p 6006",
"test": "cross-env NODE_ENV=test jest",
"transform": "cross-env DEBUG=@modernpoacher/cogs* ./transform.sh"
},
"dependencies": {
"classnames": "^2.5.1",
"debug": "^4.4.0"
},
"devDependencies": {
"@babel/core": "^7.26.7",
"@babel/eslint-parser": "^7.26.5",
"@babel/preset-env": "^7.26.7",
"@babel/preset-react": "^7.26.3",
"@babel/register": "^7.25.9",
"@modernpoacher/design-system": "1.1.22",
"@sequencemedia/eslint-config-standard": "^0.2.17",
"@sequencemedia/eslint-config-typescript": "^0.1.25",
"@storybook/addon-actions": "7.6.20",
"@storybook/addon-essentials": "7.6.20",
"@storybook/addon-links": "7.6.20",
"@storybook/react": "7.6.20",
"@storybook/react-webpack5": "7.6.20",
"@types/react": "18.3.13",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"autoprefixer": "^10.4.20",
"clean-webpack-plugin": "^4.0.0",
"core-js": "^3.40.0",
"cross-env": "^7.0.3",
"eslint": "^9.19.0",
"eslint-import-resolver-babel-module": "^5.3.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-storybook": "^0.11.2",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.9.2",
"perfectionist": "^2.4.0",
"postcss": "^8.5.1",
"postcss-discard-comments": "^7.0.3",
"postcss-discard-empty": "^7.0.0",
"postcss-import": "^16.1.0",
"postcss-loader": "^8.1.1",
"postcss-map": "^0.11.0",
"prop-types": "^15.8.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-test-renderer": "18.3.1",
"remove-files-webpack-plugin": "^1.5.0",
"sass": "^1.83.4",
"sass-loader": "^16.0.4",
"storybook": "7.6.20",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"imports": {
"#build/paths": "./build/paths.mjs",
"#cogs": "./src/index.mjs",
"#cogs/cogs": "./src/cogs/index.jsx",
"#cogs/cogs/*": "./src/cogs/*/index.jsx",
"#cogs/common": "./src/common/index.mjs",
"#cogs/components/*": "./src/components/*/index.jsx",
"#stories/cogs/*": "./stories/cogs/*/index.stories.jsx",
"#stories/state": "./stories/state/index.jsx",
"#stories/state/*": "./stories/state/*/index.jsx"
},
"exports": {
".": {
"require": "./src/index.cjs",
"import": "./src/index.mjs"
},
"./cogs": "./src/cogs/index.cjs",
"./cogs/*": "./src/cogs/*/index.cjs",
"./common": "./src/common/index.mjs",
"./components/*": "./src/components/*/index.cjs"
}
}