-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.46 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
{
"name": "@manifoldco/manifold-subscription",
"version": "0.0.16",
"private": false,
"description": "Manifold Subscription Web Components",
"main": "dist/index.js",
"module": "dist/index.mjs",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/manifold-subscription/manifold-subscription.js",
"files": [
"dist/",
"loader/"
],
"repository": {
"type": "git",
"url": "https://manifoldco/manifold-subscription"
},
"license": "BSD-3-Clause",
"scripts": {
"build": "stencil build",
"build-storybook": "npm run build && build-storybook",
"build:watch": "stencil build --watch",
"changelog:format": "changelog",
"changelog:release": "node scripts/update-changelog",
"clean-package-json": "node scripts/clean-package-json",
"dev": "npm run build:watch & rm -rf dist loader && wait-on loader/index.cjs.js && npm run storybook",
"generate": "stencil generate",
"generate:gql": "graphql-codegen --config codegen.yml",
"lint": "npm run lint:js && npm run lint:css",
"lint:css": "stylelint 'src/**/*.scss'",
"lint:js": "eslint --ext .js,.ts,.tsx src",
"start": "stencil build --dev --watch --serve",
"storybook": "start-storybook -p 6006",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"typecheck": "npm run generate:gql && tsc --noEmit",
"version": "node scripts/bump-version",
"vrt": "npm run build-storybook && percy-storybook"
},
"dependencies": {
"@stripe/stripe-js": "^1.2.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.13.1",
"@graphql-codegen/typescript": "^1.13.1",
"@graphql-codegen/typescript-operations": "^1.13.1",
"@manifoldco/eslint-plugin-stencil": "^0.4.1",
"@manifoldco/manifold-init": "0.6.1",
"@manifoldco/manifold-init-types": "^0.7.3",
"@manifoldco/mercury": "^0.2.1",
"@percy/storybook": "^3.3.0",
"@rollup/plugin-replace": "^2.3.1",
"@stencil/core": "^1.10.1",
"@stencil/postcss": "^1.0.1",
"@stencil/sass": "^1.1.1",
"@stencil/store": "^1.0.1",
"@storybook/addon-a11y": "^5.3.18",
"@storybook/addon-knobs": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/html": "^5.3.18",
"@types/jest": "24.0.20",
"@types/lodash": "^4.14.150",
"@types/puppeteer": "1.19.0",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"babel-loader": "^8.1.0",
"cssnano": "^4.1.10",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"graphql": "^14.6.0",
"jest": "24.9.0",
"jest-cli": "24.9.0",
"keep-a-changelog": "^0.10.1",
"lodash": "^4.17.15",
"postcss-preset-env": "^6.7.0",
"prettier": "^1.19.1",
"puppeteer": "1.19.0",
"rollup-pluginutils": "^2.8.2",
"stylelint": "^13.2.1",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^19.0.0",
"stylelint-config-standard-scss": "^1.1.0",
"stylelint-order": "^4.0.0",
"stylelint-scss": "^3.16.0",
"wait-on": "^5.0.0"
},
"peerDependencies": {
"@manifoldco/manifold-init": "*"
}
}