-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 3.27 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
{
"name": "@manifoldco/manifold-plan-table",
"version": "0.3.1",
"private": false,
"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/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/manifold-plan-table/manifold-plan-table.js",
"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",
"format:changelog": "npx keep-a-changelog && prettier CHANGELOG.md --write",
"generate:gql": "graphql-codegen --config codegen.yml",
"generate": "stencil generate",
"happo": "npm run build && happo run",
"lint": "npm run lint:js && npm run lint:css",
"lint:css": "stylelint 'src/**/*.(css|scss)'",
"lint:js": "eslint --ext .js,.ts,.tsx src",
"start": "stencil build --dev --watch --serve",
"storybook": "start-storybook -p 6006",
"test": "stencil test --spec",
"test:watch": "stencil test --spec --watchAll",
"test:debug": "node --inspect-brk node_modules/.bin/stencil test --spec --runInBand",
"typecheck": "npm run generate:gql && tsc --noEmit",
"version": "node scripts/bump-version",
"vrt": "npm run build-storybook && percy-storybook"
},
"dependencies": {
"deepmerge": "^4.2.2"
},
"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.5",
"@manifoldco/manifold-init-types": "^0.7.5",
"@manifoldco/mercury": "^0.2.2",
"@percy/storybook": "^3.3.0",
"@rollup/plugin-replace": "^2.3.1",
"@stencil/core": "^1.13.0",
"@stencil/postcss": "^1.0.1",
"@stencil/sass": "^1.1.1",
"@storybook/addon-a11y": "^5.3.17",
"@storybook/addon-knobs": "^5.3.17",
"@storybook/addons": "^5.3.17",
"@storybook/html": "^5.3.17",
"@types/jest": "^25.2.2",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.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.1.1",
"graphql": "^14.6.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.2",
"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",
"wait-on": "^5.0.0"
},
"peerDependencies": {
"@manifoldco/manifold-init": "*"
}
}