-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.74 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.74 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
{
"name": "mde-react-component-library",
"version": "1.0.0",
"description": "Collection of common React.js components for Virginia Tech MDE toolset.",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build-ts": "tsc",
"build": "npm run clean && tsc",
"build-watch": "npm run clean && tsc -w",
"prepare": "npm run build",
"clean": "rimraf dist",
"start-playground": "cd playground && npm run dev",
"i-all": "npm i && cd playground && npm i",
"dev": "npm-run-all --parallel build-watch start-playground",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vt-ece-mde/mde-react-component-library.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/vt-ece-mde/mde-react-component-library/issues"
},
"homepage": "https://github.com/vt-ece-mde/mde-react-component-library#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@types/react": "^18.0.29",
"acorn-jsx": "^5.3.2",
"autoprefixer": "^10.4.14",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^4.4.1",
"rollup": "^3.20.2",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"tailwindcss": "^3.2.7",
"tslib": "^2.5.0",
"typescript": "^5.0.2"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"mde-typescript-library": "github:vt-ece-mde/mde-typescript-library"
}
}