-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 832 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 832 Bytes
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
{
"name": "react-sqljs-demo",
"version": "1.0.0",
"description": "sql.js + react example starter project",
"keywords": [
"react",
"starter"
],
"main": "src/index.js",
"license": "MIT",
"dependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"browserify-fs": "^1.0.0",
"crypto-browserify": "^3.12.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sql.js": "^1.6.2",
"stream-browserify": "^3.0.0"
},
"devDependencies": {
"@craco/craco": "^5.9.0",
"react-scripts": "^5.0.1",
"typescript": "^4.5.5"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test --env=jsdom",
"eject": "craco eject"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}