-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.91 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
{
"name": "@file-agent/react",
"version": "2.0.0-pre.0",
"description": "High performant file upload component with elegant and distinguishable previews for every file type and support for drag and drop, validations, default uploader with progress support and externally customizable via props and methods",
"main": "dist/react-file-agent.min.js",
"types": "types/index.d.ts",
"files": [
"/dist",
"/types"
],
"scripts": {
"coverage": "jest --coverage",
"lint": "tslint -p tsconfig.json",
"prebuild": "rimraf dist",
"build": "webpack --env=production",
"watch": "webpack --env=development",
"test": "jest --coverage",
"test:watch": "jest --watch --coverage",
"servex": "npx serve",
"dev": "webpack-dev-server --env=development",
"test:prod": "npm run lint && npm run test -- --coverage --no-cache"
},
"author": "Safraz Razik",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/safrazik/file-agent.git"
},
"bugs": {
"url": "https://github.com/safrazik/file-agent/issues"
},
"homepage": "https://safrazik.com/file-agent/",
"dependencies": {
"@file-agent/core": "^2.0.0-pre.0",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/react": "^16.9.47",
"@types/react-dom": "^16.9.8",
"css-loader": "^4.2.2",
"html-loader": "^1.3.0",
"jest": "^26.4.2",
"mini-css-extract-plugin": "^0.10.0",
"node-sass": "^4.14.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"sass-loader": "^10.0.1",
"style-loader": "^1.2.1",
"ts-jest": "^26.3.0",
"ts-loader": "^8.0.3",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"tslint": "^6.1.3",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}