-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
101 lines (101 loc) · 3.08 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
95
96
97
98
99
100
101
{
"name": "thanossnap",
"version": "1.0.3",
"description": "Client for https://d23jzln6ucpirz.cloudfront.net",
"main": "dist/index.html",
"config": {
"prettier_target": "./*.{ts,js} ./**/*.{ts,tsx} !./dist/**",
"eslint_target": "./*.{ts,js} ./**/*.{ts,tsx}"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --config webpack/webpack.dev.config.ts",
"build": "npm run build:clean && webpack --config webpack/webpack.prod.config.ts",
"build:clean": "rimraf dist",
"prettier:check": "yarn prettier --debug-check $npm_package_config_prettier_target",
"prettier:write": "yarn prettier --write $npm_package_config_prettier_target",
"lint:eslint": "eslint --ext $npm_package_config_eslint_target",
"lint": "yarn lint:eslint && yarn prettier:check",
"tsc": "tsc"
},
"husky": {
"hooks": {
"pre-commit": "yarn tsc && yarn lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/jiggum/thanos-client.git"
},
"keywords": [
"thanossnap",
"thanos",
"inpainting"
],
"author": "jiggum <0s.dongmin@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jiggum/thanos-client/issues"
},
"homepage": "https://d23jzln6ucpirz.cloudfront.net",
"browserslist": [
"last 2 version",
"> 1%",
"not dead"
],
"dependencies": {
"@material-ui/core": "^4.7.0",
"axios": "^0.21.1",
"classnames": "^2.2.6",
"notistack": "^0.9.6",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-dropzone": "^10.2.1",
"react-dust-effect": "^0.0.7",
"react-image-file-resizer": "^0.2.1",
"react-thanos-glove": "^0.0.7"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.7.4",
"@types/classnames": "^2.2.9",
"@types/node": "^12.7.11",
"@types/react": "^16.9.5",
"@types/react-dom": "^16.9.1",
"@types/react-dropzone": "^5.1.0",
"@types/webpack": "^4.39.2",
"@types/webpack-dev-server": "^3.1.7",
"@typescript-eslint/eslint-plugin": "^2.3.2",
"@typescript-eslint/parser": "^2.3.2",
"autoprefixer": "^9.6.2",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"eslint": "6.1.0",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"file-loader": "^5.0.2",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.8",
"node-sass": "^4.13.1",
"postcss-loader": "^3.0.0",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.3",
"url-loader": "^2.1.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2",
"webpack-merge": "^4.2.2"
}
}