-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 2.16 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
{
"name": "@cimpress-technology/customizr",
"version": "2.0.0",
"description": "A thin client for Cimpress Customizr service",
"main": "./lib/index.js",
"files": [
"lib"
],
"typings": "./index.d.ts",
"scripts": {
"test": "npm run build && node ./node_modules/mocha/bin/mocha --require @babel/polyfill --require @babel/register tests/",
"code-check": "ESLINT_USE_FLAT_CONFIG=false eslint 'src/' --ext .js --ext .jsx",
"cover": "npm run build && node ./node_modules/nyc/bin/nyc.js ./node_modules/mocha/bin/mocha --require @babel/polyfill --require @babel/register tests/",
"build": "tsc -p ./tsconfig.build.json && babel src -d lib --ignore 'src/stories/*' && node ./copy-files.js",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"author": "TrdelnikSquad@cimpress.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Cimpress/cimpress-customizr.git"
},
"bugs": {
"url": "https://github.com/Cimpress/cimpress-customizr/issues"
},
"homepage": "https://github.com/Cimpress/cimpress-customizr#readme",
"keywords": [
"cimpress",
"customizr"
],
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.7",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/polyfill": "7.0.0",
"@babel/preset-env": "^7.26.7",
"@babel/register": "7.0.0",
"@chromatic-com/storybook": "^3.2.4",
"@storybook/addon-essentials": "^8.5.3",
"@storybook/addon-interactions": "^8.5.3",
"@storybook/addon-onboarding": "^8.5.3",
"@storybook/blocks": "^8.5.3",
"@storybook/react": "^8.5.3",
"@storybook/react-vite": "^8.5.3",
"@storybook/test": "^8.5.3",
"chai": "^4.5.0",
"eslint": "^9.19.0",
"eslint-config-google": "^0.9.1",
"eslint-plugin-storybook": "^0.11.2",
"fetch-mock": "^12.2.1",
"fs-extra": "^11.3.0",
"glob": "^11.0.1",
"mocha": "^8.4.0",
"nock": "^14.0.0",
"nyc": "^15.1.0",
"react-json-view": "^1.21.3",
"storybook": "^8.5.3",
"typescript": "^5.7.3"
},
"dependencies": {
"@babel/runtime": "^7.26.7",
"lodash": "^4.17.13",
"pope": "^2.0.2"
}
}