-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
85 lines (85 loc) · 2.5 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
{
"author": {
"name": "Alexis Janvier",
"email": "alexis@marmelab.com",
"url": "https://www.marmelab.com"
},
"keywords": [
"react",
"react-admin",
"sqlite"
],
"license": "MIT",
"name": "ra-sqlite-dataprovider",
"version": "1.0.0",
"description": "POC of a dataprovider using a sqlite database hosted on a static server",
"homepage": "https://marmelab.com/ra-sqlite-dataprovider",
"repository": {
"type": "git",
"url": "https://github.com/marmelab/ra-sqlite-dataprovider"
},
"main": "index.js",
"scripts": {
"start": "webpack serve --config config/webpack.dev.js",
"build": "NODE_ENV=production webpack --config config/webpack.prod.js",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"resolutions": {
"underscore": "1.13.1"
},
"dependencies": {
"prop-types": "15.7.2",
"react": "17.0.2",
"react-admin": "3.18.3",
"react-dom": "17.0.2",
"sql-bricks": "2.0.5",
"sql.js-httpvfs": "0.8.11"
},
"devDependencies": {
"@babel/core": "7.15.8",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/plugin-transform-runtime": "7.15.8",
"@babel/preset-env": "7.15.8",
"@babel/preset-react": "7.14.5",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.1",
"@svgr/webpack": "5.5.0",
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "12.1.2",
"@testing-library/user-event": "13.2.1",
"autoprefixer": "10.3.7",
"babel-eslint": "10.1.0",
"babel-jest": "27.2.4",
"babel-loader": "8.2.2",
"clean-webpack-plugin": "3.0.0",
"copy-webpack-plugin": "8.1.1",
"css-loader": "6.3.0",
"css-minimizer-webpack-plugin": "3.1.1",
"dotenv-webpack": "7.0.3",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.26.1",
"eslint-plugin-react-hooks": "4.2.0",
"gh-pages": "3.2.3",
"html-webpack-plugin": "5.3.2",
"jest": "27.2.4",
"mini-css-extract-plugin": "1.6.0",
"node-sass": "6.0.1",
"postcss": "8.3.9",
"postcss-import": "14.0.2",
"postcss-loader": "6.1.1",
"prettier": "2.4.1",
"react-refresh": "0.10.0",
"sass-loader": "12.1.0",
"style-loader": "3.3.0",
"terser-webpack-plugin": "5.2.4",
"webpack": "5.58.0",
"webpack-cli": "4.9.0",
"webpack-dev-server": "3.11.2",
"webpack-merge": "5.8.0"
}
}