This repository was archived by the owner on Oct 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·81 lines (81 loc) · 2.06 KB
/
package.json
File metadata and controls
executable file
·81 lines (81 loc) · 2.06 KB
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
{
"name": "@twicpics/react",
"description": "TwicPics components library for React.js",
"version": "0.3.0",
"author": "TwicPics",
"license": "MIT",
"main": "./dist/twicpics.js",
"style": "./dist/twicpics.css",
"files": [
"dist"
],
"keywords": [
"react",
"react-component",
"twicpics",
"react-twicpics",
"image"
],
"repository": {
"type": "git",
"url": "git://github.com/TwicPics/react.git"
},
"devDependencies": {
"@babel/core": "7.14.8",
"@babel/preset-env": "7.14.8",
"@babel/preset-react": "7.14.5",
"babel-loader": "8.2.2",
"css-loader": "6.2.0",
"css-minimizer-webpack-plugin": "3.0.2",
"eslint": "7.31.0",
"eslint-config-creative-area": "0.11.1",
"eslint-plugin-react": "7.24.0",
"mini-css-extract-plugin": "2.1.0",
"prop-types": "15.7.2",
"react": "17.0.2",
"style-loader": "3.2.1",
"terser-webpack-plugin": "5.1.4",
"webpack": "5.46.0",
"webpack-cli": "4.7.2"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0"
},
"scripts": {
"build": "webpack",
"test": "eslint --ext .js,.jsx src"
},
"eslintConfig": {
"env": {
"node": true,
"browser": true
},
"extends": [
"plugin:react/recommended",
"eslint:recommended",
"creative-area/es2020/module"
],
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"prefer-named-capture-group": "off"
},
"settings": {
"react": {
"version": "16.3"
}
}
},
"bugs": {
"url": "https://github.com/TwicPics/react/issues"
},
"homepage": "https://github.com/TwicPics/react#readme",
"publishConfig": {
"access": "public"
}
}