-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
94 lines (94 loc) · 2.56 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"author": "pfftdammitchris",
"dependencies": {
"axios": "^0.24.0"
},
"description": "Search the International Classification of Diseases table for classifying diagnoses for use in health care",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@svgr/rollup": "^2.4.1",
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"concurrently": "^6.4.0",
"cross-env": "^5.1.4",
"gh-pages": "^1.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-scripts-ts": "^2.16.0",
"rollup": "^2.60.0",
"rollup-plugin-esbuild": "^4.6.0",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^1.6.2",
"rollup-plugin-progress": "^1.1.2",
"rollup-plugin-url": "^1.4.0",
"typescript": "^4.4.4"
},
"engines": {
"node": ">=14",
"npm": ">=6"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 2021,
"sourceType": "module"
},
"root": true
},
"exports": {
"default": "./dist/index.es.js",
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js"
},
"files": [
"dist"
],
"license": "MIT",
"main": "dist/index.es.js",
"name": "react-icd10",
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"prettier": {
"arrowParens": "always",
"printWidth": 80,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all"
},
"repository": "pfftdammitchris/react-icd10",
"scripts": {
"build": "cross-env NODE_ENV=production concurrently \"rollup -c\" \"npm run types\"",
"deploy": "gh-pages -d example/build",
"predeploy": "cd example && npm install && npm run build",
"prepare": "npm run build",
"start": "cross-env NODE_ENV=development concurrently \"rollup -c -w\" \"npm run types\"",
"test": "cross-env CI=1 react-scripts-ts test --env=jsdom",
"test:watch": "react-scripts-ts test --env=jsdom",
"types": "tsc --declaration --emitDeclarationOnly --outFile dist/index.d.ts"
},
"type": "module",
"typesVersions": {
"*": {
"index.d.ts": [
"./dist/index.d.ts"
]
}
},
"typings": "./dist/index.d.ts",
"version": "1.0.9"
}