-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 829 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 829 Bytes
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
{
"name": "helm-react-ui",
"version": "1.0.0",
"description": "",
"main": "index.js",
"watch": {
"build": "{src,test}/*.js"
},
"scripts": {
"test": "jest",
"build": "./node_modules/.bin/babel src --out-file index.js --verbose",
"watch": "npm-watch"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"npm-watch": "^0.7.0",
"react": "^16.6.1",
"react-dom": "^16.6.3"
},
"jest": {
"moduleDirectories": [
"node_modules"
],
"testMatch": [
"<rootDir>/test/**/*.test.js"
]
},
"dependencies": {
"@rjsf/core": "^4.2.0",
"react-markdown": "^8.0.3"
}
}