-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.76 KB
/
package.json
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "react-magical-form",
"version": "0.0.5",
"description": "Form builder for React",
"homepage": "https://github.com/mozisan/react-magical-form#readme",
"bugs": {
"url": "https://github.com/mozisan/react-magical-form/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mozisan/react-magical-form.git"
},
"license": "MIT",
"author": "mozisan <[email protected]>",
"files": [
"lib/",
"package.json"
],
"sideEffects": false,
"main": "lib/index.js",
"module": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"build": "run-s clean transpile",
"clean": "rimraf lib",
"lint": "eslint --ext .ts,.tsx src",
"prepare": "run-s build",
"test": "jest --runInBand",
"transpile": "tsc -p tsconfig.build.json",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@mozisan/eslint-config": "^1.1.3"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@testing-library/react": "^9.3.0",
"@testing-library/react-hooks": "^3.1.0",
"@types/jest": "^24.0.19",
"@types/react": "^16.9.9",
"@types/testing-library__react": "^9.1.2",
"@types/testing-library__react-hooks": "^2.0.0",
"babel-jest": "^24.9.0",
"eslint": "^6.5.1",
"eslint-plugin-filenames": "^1.3.2",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"prettier-plugin-packagejson": "^2.0.1",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-test-renderer": "^16.11.0",
"regenerator-runtime": "^0.13.3",
"rimraf": "^3.0.0",
"ts-jest": "^24.1.0",
"typescript": "^3.6.4"
},
"publishConfig": {
"access": "public"
}
}