-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 3.18 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
{
"name": "@manifoldco/manifold-invoices",
"version": "0.1.5",
"description": "Stencil Component Starter",
"main": "dist/index.js",
"module": "dist/index.mjs",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/manifold-invoices/manifold-invoices.js",
"license": "BSD 3-Clause",
"files": [
"dist/",
"loader/"
],
"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.yaml",
"lint:css": "stylelint 'src/**/*.scss'",
"lint:js": "eslint --ext .js,.ts,.tsx src",
"lint": "npm run lint:js && npm run lint:css",
"start": "stencil build --dev --watch --serve",
"storybook": "start-storybook -p 6006",
"test.debug": "node --inspect-brk node_modules/.bin/stencil test --spec --e2e --runInBand",
"test.watch": "stencil test --spec --e2e --watchAll",
"test": "stencil test --spec --e2e",
"typecheck": "npm run generate:gql && tsc --noEmit",
"version": "node scripts/bump-version",
"vrt": "npm run build-storybook && percy-storybook"
},
"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.7.3",
"@manifoldco/manifold-init-types": "^0.7.3",
"@manifoldco/mercury": "^0.2.3",
"@percy/storybook": "^3.3.0",
"@rollup/plugin-replace": "^2.3.1",
"@stencil/core": "^1.13.0",
"@stencil/postcss": "^1.0.1",
"@stencil/sass": "^1.2.0",
"@storybook/addon-a11y": "^5.3.18",
"@storybook/addon-knobs": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/html": "^5.3.18",
"@types/jest": "^25.2.2",
"@types/puppeteer": "3.0.0",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.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",
"fetch-mock": "^9.4.0",
"jest": "^26.0.1",
"jest-cli": "^26.0.1",
"keep-a-changelog": "^0.10.1",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.5",
"puppeteer": "1.20.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": "^20.0.0",
"stylelint-config-standard-scss": "^1.1.0",
"stylelint-scss": "^3.16.0",
"wait-on": "^5.0.0"
}
}