-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.03 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.03 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
{
"name": "dce-reactkit",
"version": "5.0.3",
"description": "Shared components for Harvard DCE apps",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && rollup -c",
"test": "jest --runInBand"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom"
},
"repository": {
"type": "git",
"url": "git+https://github.com/harvard-edtech/dce-reactkit.git"
},
"author": "Gabe Abrams <gabeabrams@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/harvard-edtech/dce-reactkit/issues"
},
"homepage": "https://github.com/harvard-edtech/dce-reactkit#readme",
"dependencies": {
"dce-commonkit": "^5.0.0",
"react-select": "^5.7.3"
},
"peerDependencies": {
"@fortawesome/fontawesome-svg-core": "^x.x.x",
"@fortawesome/free-regular-svg-icons": "^x.x.x",
"@fortawesome/free-solid-svg-icons": "^x.x.x",
"@fortawesome/react-fontawesome": "^x.x.x",
"bootstrap": "^5.x.x",
"react": "^x.x.x",
"react-dom": "^x.x.x"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.2.1",
"@rollup/plugin-typescript": "^10.0.1",
"@types/bootstrap": "^5.2.8",
"@types/express": "^4.17.17",
"@types/jest": "^28.1.7",
"@types/node": "^20.2.5",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "^8.42.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"rollup": "^2.70.2",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"ts-jest": "^28.0.8",
"typescript": "^4.9.5"
}
}