-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.77 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
{
"name": "react-enhanced-numeric-input",
"version": "1.2.4",
"description": "An enhanced Numeric Input compatible with all browsers",
"repository": "https://github.com/studiojms/react-enhanced-numeric-input.git",
"author": "studiojms",
"license": "MIT",
"main": "dist/NumericInput.js",
"types": "dist/NumericInput.d.ts",
"scripts": {
"watch": "webpack --mode=development --watch",
"dev": "webpack --mode=development",
"build": "webpack --mode=production",
"build:dev": "webpack --mode=development",
"lint": "tsc --noEmit && eslint 'src/**/*.{js,ts,tsx}'",
"docz:dev": "docz dev",
"docz:build": "docz build",
"test": "jest"
},
"dependencies": {
"classnames": "^2.2.6",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@types/classnames": "^2.2.10",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.0",
"@types/react": "^16.9.36",
"@types/react-dom": "^16.9.7",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"awesome-typescript-loader": "^5.2.1",
"css-loader": "^3.6.0",
"docz": "^2.3.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.5.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"gatsby-plugin-sass": "^2.3.4",
"jest": "^26.0.1",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"prettier": "^2.0.5",
"source-map-loader": "^1.0.0",
"terser-webpack-plugin": "^3.0.5",
"ts-jest": "^26.1.0",
"tslint": "^6.1.2",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}