forked from oxctl/ui-lti
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.47 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.47 KB
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": "@oxctl/ui-lti",
"version": "1.3.2",
"author": "University of Oxford, IT Services",
"description": "Common UI components that are commonly used for LTI tools in the Canvas LMS",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"license": "MIT",
"sideEffects": false,
"scripts": {
"storybook": "start-storybook -p 6006",
"storybook-https": "start-storybook -p 6006 --https --ssl-cert localhost.pem --ssl-key localhost-key.pem",
"build-storybook": "build-storybook",
"build": "rollup -cm",
"start": "rollup -cm -w",
"test": "jest --config ./jest.config.json"
},
"files": [
"src/*",
"dist/*"
],
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-private-property-in-object": "^7.14.0",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/preset-react": "^7.13.13",
"@instructure/emotion": "^8.2.1",
"@instructure/ui-babel-preset": "^8.2.1",
"@instructure/ui-billboard": "^8.2.1",
"@instructure/ui-eslint-config": "^8.2.1",
"@instructure/ui-modal": "^8.2.1",
"@instructure/ui-spinner": "^8.2.1",
"@instructure/ui-stylelint-config": "^8.2.1",
"@instructure/ui-webpack-config": "^8.2.1",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/react": "^6.2.9",
"babel-loader": "^8.2.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"html-webpack-plugin": "^4",
"jest": "^26.6.3",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"rollup": "^2.45.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4"
},
"peerDependencies": {
"@instructure/canvas-theme": ">= 7.0.0",
"@instructure/emotion": ">= 7.0.0",
"@instructure/ui-billboard": ">= 7.0.0",
"@instructure/ui-heading": ">= 7.0.0",
"@instructure/ui-icons": ">= 7.0.0",
"@instructure/ui-modal": ">= 7.0.0",
"@instructure/ui-spinner": ">= 7.0.0",
"@instructure/ui-svg-images": ">= 7.0.0",
"@instructure/ui-text": ">= 7.0.0",
"@instructure/ui-themes": ">= 7.0.0",
"@instructure/ui-view": ">= 7.0.0",
"prop-types": ">=15.0.0",
"react": ">= 16.9.0",
"react-dom": ">= 16.9.0"
},
"dependencies": {}
}