-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 924 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 924 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
40
{
"name": "json-driven-react",
"version": "1.8.2",
"description": "Converts JSON to React",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode production",
"transpile": "babel ./src --out-dir ./dist",
"prepare": "npm run transpile"
},
"keywords": [
"json",
"dynamic",
"react",
"forms",
"data driven"
],
"author": "Kyle Brenneman <brenneman.kyle@gmail.com>",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7"
},
"dependencies": {
"react": "^16.9.0"
},
"browserslist": "> 0.25%, not dead",
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
}
}