-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.02 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
100
101
102
{
"name": "@learnblocks/core",
"version": "1.0.0-alpha.16",
"description": "Composable react components for the creation and display of digital learing content.",
"publishConfig": {
"access": "public"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"commit": "git-cz",
"gen:pkg": "ts-node scripts/plopfile.ts",
"prepublish": "yarn build",
"start": "start-storybook -p 6006",
"watch:build": "watch 'yarn build && yalc push' ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/siggi-learn/learnblocks.git"
},
"dependencies": {
"js-levenshtein": "^1.1.6",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/cli": "7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/preset-env": "7.12.11",
"@babel/preset-react": "7.12.10",
"@babel/preset-typescript": "7.12.7",
"@babel/runtime": "7.12.5",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@jest/types": "26.6.2",
"@storybook/addon-a11y": "^6.1.11",
"@storybook/addon-actions": "^6.1.10",
"@storybook/addon-knobs": "^6.1.11",
"@storybook/addon-toolbars": "^6.1.11",
"@storybook/cli": "^6.1.11",
"@storybook/react": "^6.1.11",
"@types/jest": "^26.0.19",
"@types/js-levenshtein": "^1.1.0",
"@types/lodash": "^4.14.168",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "4.11.1",
"@typescript-eslint/parser": "4.11.1",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.2",
"eslint": "7.17.0",
"eslint-config-airbnb-typescript": "12.0.0",
"eslint-config-prettier": "7.1.0",
"eslint-config-react": "1.1.7",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.3.0",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-testing-library": "3.9.2",
"esm": "3.2.25",
"git-cz": "^4.7.6",
"husky": "4.3.6",
"jest": "26.6.3",
"jest-environment-jsdom": "26.6.2",
"jest-watch-typeahead": "0.6.1",
"lint-staged": "^10.5.4",
"plop": "2.7.4",
"prettier": "^2.2.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-test-renderer": "^17.0.1",
"rimraf": "^3.0.2",
"storybook-addon-performance": "^0.13.0",
"ts-jest": "26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"watch": "^1.0.2"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
},
"author": "Malte Hecht <malte@siggi.cloud>",
"license": "MIT",
"homepage": "https://github.com/siggi-learn/learnblocks#readme",
"bugs": {
"url": "https://github.com/siggi-learn/learnblocks/issues"
},
"keywords": [
"react",
"education",
"ui",
"learncontent"
]
}