This repository was archived by the owner on Jan 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.31 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": "@mobform/mobform",
"version": "3.2.3",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*.d.ts",
"lib/**/*.js"
],
"repository": "github:melbourne2991/mobform",
"scripts": {
"start": "MOBFORM_DEVELOPMENT=true webpack-dev-server --historyApiFallback --mode=development",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf ./build/src && rm -rf ./lib",
"build": "npm run clean && tsc && cp -r ./build/src ./lib",
"docs": "typedoc --out ./docs ./src",
"deploy": "npm run build && npm publish --access public"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/moment": "^2.13.0",
"@types/page": "^1.8.0",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"html-webpack-plugin": "^3.2.0",
"mobx": "^5.13.0",
"mobx-react": "^6.1.3",
"moment": "^2.24.0",
"page": "^1.11.4",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"ts-loader": "^6.1.0",
"typedoc": "^0.15.0",
"typescript": "^3.6.3",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.8",
"webpack-dev-server": "^3.8.0"
},
"peerDependencies": {
"mobx": ">=5.13.0",
"mobx-react": ">=6.1.3",
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"dependencies": {}
}