-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1017 Bytes
/
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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "rimraf ./packages/**/dist && rollup -c",
"build:watch": "rimraf ./packages/**/dist && rollup -c -w",
"schema": "ts-json-schema-generator --validation-keywords markdownDescription -o schema.json -p ./schema.ts -t Config",
"example": "./scripts/linkexample.js",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-typescript": "^8.3.3",
"@types/jest": "^29.2.0",
"@types/superagent": "^4.1.15",
"babel-jest": "^29.2.1",
"jest": "^29.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"rollup": "^2.76.0",
"rollup-plugin-node-externals": "^4.1.1",
"rollup-plugin-preserve-shebang": "^1.0.1",
"ts-json-schema-generator": "^1.1.2-next.0",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
}
}