This repository was archived by the owner on Feb 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.31 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.31 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@tokenized/sdk-example-react",
"author": {
"name": "Tokenized",
"email": "admin@tokenized.com",
"url": "https://tokenized.com/"
},
"version": "0.6.1",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/tokenized/tokenized-sdk-example-react.git"
},
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.14.6",
"@fortawesome/fontawesome-free": "^5.15.3",
"@reduxjs/toolkit": "^1.5.1",
"@tokenized/sdk-js-private": "^0.6.1",
"@tokenized/sdk-react-private": "^0.6.1",
"bulma": "^0.9.2",
"classnames": "^2.3.1",
"downshift": "^6.1.3",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-final-form": "^6.5.3",
"react-intl": "^5.18.0",
"react-query": "^3.16.0",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"redux": "^4.1.0"
},
"scripts": {
"start": "echo 'This project is deprecated. Do not use.'",
"build": "echo 'This project is deprecated. Do not use.'",
"update-strings": "formatjs extract 'src/**/*.js' --out-file src/lang/en.json --id-interpolation-pattern '[sha512:contenthash:base64:6]' && npm run compile-translations",
"compile-translations": "formatjs compile-folder --ast src/lang src/lang-compiled",
"generate-files": "npm run update-strings",
"format-all": "prettier --write .",
"lint": "eslint .",
"lint-fix": "eslint --fix ."
},
"eslintConfig": {
"root": true,
"plugins": [
"formatjs"
],
"parser": "@babel/eslint-parser",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module",
"allowImportExportEverywhere": true
},
"extends": [
"eslint:recommended",
"plugin:import/recommended",
"plugin:promise/recommended",
"plugin:compat/recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"prettier"
],
"rules": {
"formatjs/enforce-default-message": [
"error",
"literal"
],
"formatjs/no-id": [
"error"
],
"formatjs/no-camel-case": [
"error"
],
"formatjs/no-emoji": [
"error"
],
"formatjs/no-multiple-whitespaces": [
"error"
],
"formatjs/no-multiple-plurals": [
"error"
],
"formatjs/no-offset": [
"error"
],
"react/prop-types": "off"
},
"settings": {
"react": {
"version": "detect"
}
}
},
"browserslist": [
"> 1.5%",
"not dead"
],
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@formatjs/cli": "^4.2.15",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.1",
"babel-loader": "^8.2.2",
"babel-plugin-formatjs": "^10.3.1",
"buffer": "^6.0.3",
"cross-env": "^7.0.3",
"crypto-browserify": "^3.12.0",
"css-loader": "^5.2.6",
"eslint-plugin-formatjs": "^2.15.2",
"eslint-plugin-react": "^7.24.0",
"html-webpack-plugin": "^5.3.1",
"jsdoc-to-markdown": "^7.0.1",
"prettier": "^2.3.2",
"process": "^0.11.10",
"react-refresh": "^0.10.0",
"stream-browserify": "^3.0.0",
"style-loader": "^2.0.0",
"util": "^0.12.4",
"webpack": "^5.39.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.3.1"
}
}