-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.06 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
{
"name": "@canopyinc/ui",
"version": "0.3.1",
"description": "A UI web-components library for building on the Canopy API",
"main": "build/index.js",
"browser": "build/browser.js",
"repository": "https://github.com/canopy1/canopy-ui",
"author": "CanopyServicing",
"license": "ISC",
"keywords": [],
"scripts": {
"test": "jest",
"build": "rollup -c",
"lint": "prettier --check 'src/**/*.{ts,tsx}' && eslint 'src/**/*.{ts,tsx}'",
"lint:fix": "prettier --write 'src/**/*.{ts,tsx}' && eslint 'src/**/*.{ts,tsx}'",
"storybook": "start-storybook -s public -p 6006",
"build-storybook": "build-storybook -s public",
"deploy-storybook": "storybook-to-ghpages",
"prepublishOnly": "yarn build",
"postpublish": "yarn deploy-storybook"
},
"engines": {
"node": ">=12"
},
"dependencies": {
"lit": "2.0.0-rc.2",
"luxon": "2.0.1",
"ts-lit-plugin": "1.2.1"
},
"devDependencies": {
"@babel/core": "7.13.10",
"@babel/preset-env": "7.13.10",
"@babel/preset-typescript": "7.13.0",
"@rollup/plugin-node-resolve": "13.0.0",
"@rollup/plugin-typescript": "8.2.1",
"@storybook/addon-actions": "6.3.0",
"@storybook/addon-docs": "6.3.0",
"@storybook/addon-essentials": "6.3.0",
"@storybook/addon-links": "6.4.14",
"@storybook/storybook-deployer": "2.8.10",
"@storybook/web-components": "6.3.0",
"@types/jest": "26.0.20",
"@types/luxon": "1.27.1",
"@typescript-eslint/eslint-plugin": "4.0.1",
"@typescript-eslint/parser": "4.0.1",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"babel-loader": "8.2.2",
"eslint": "7.8.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"jest": "26.6.3",
"prettier": "2.1.1",
"rollup": "2.53.1",
"rollup-plugin-terser": "7.0.2",
"ts-jest": "26.5.3",
"ts-node": "9.0.0",
"typescript": "4.4.0-beta"
},
"resolutions": {
"prismjs": "1.24.0",
"glob-parent": "5.1.2",
"trim": "0.0.3"
},
"files": [
"build",
"public",
"src",
"index.js",
"README.md"
]
}