-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.27 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.27 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
{
"name": "declarative-form-generator",
"version": "1.0.0",
"description": "A simple react form generator using functional programming concepts",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --hot --colors",
"build": "webpack",
"test": "standard && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dbagia/declarative-form-generator.git"
},
"keywords": [
"declarative",
"react"
],
"author": "Dipen Bagia (dipen.bagia@outlook.com)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dbagia/declarative-form-generator/issues"
},
"homepage": "https://github.com/dbagia/declarative-form-generator#readme",
"dependencies": {
"axios": "0.21.1",
"basscss": "8.1.0",
"crocks": "0.12.4",
"ramda": "0.27.0",
"react": "16.13.0",
"react-dom": "16.13.0",
"react-router-dom": "5.1.2"
},
"devDependencies": {
"@babel/preset-env": "7.8.7",
"@babel/preset-react": "7.8.3",
"babel-jest": "25.1.0",
"babel-loader": "8.0.6",
"css-loader": "3.4.2",
"jest": "25.1.0",
"react-test-renderer": "16.13.0",
"standard": "14.3.3",
"style-loader": "1.1.3",
"webpack": "4.42.0",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.10.3"
}
}