-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 906 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 906 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
{
"name": "formius",
"version": "1.0.0",
"description": "A form library.",
"main": "./src/index.tsx",
"scripts": {
"build": "webpack --mode=production",
"start": "webpack-dev-server --open --mode=development"
},
"keywords": [],
"author": "Jonas Anker Jahr",
"license": "ISC",
"dependencies": {
"react": "^16.10.2",
"react-dom": "^16.10.2",
"yup": "^0.27.0"
},
"devDependencies": {
"@types/react": "^16.9.5",
"@types/react-dom": "^16.9.1",
"@types/yup": "^0.26.24",
"clean-webpack-plugin": "^3.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"source-map-loader": "^0.2.4",
"ts-loader": "^6.2.0",
"tslint": "^5.20.0",
"tslint-config-airbnb": "^5.11.2",
"tslint-loader": "^3.5.4",
"typescript": "^3.6.3",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2"
}
}