-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 821 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 821 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
{
"name": "sqlite-ipfs",
"version": "1.0.0",
"description": "sqlite on ipfs",
"main": "index.js",
"scripts": {
"build": "rm -rf dist && ./node_modules/.bin/webpack --mode=production --config webpack.config",
"dev": "./node_modules/.bin/webpack serve --mode=development --config webpack.config"
},
"author": "Henry Clifford",
"license": "ISC",
"dependencies": {
"@babel/preset-typescript": "^7.16.7",
"ipfs": "^0.62.0",
"level-mem": "^6.0.1",
"sql.js": "^1.6.2",
"sql.js-httpvfs": "^0.8.11"
},
"devDependencies": {
"@types/sql.js": "^1.4.3",
"file-loader": "^6.2.0",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.3",
"node-polyfill-webpack-plugin": "^1.1.4"
}
}