-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.21 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
{
"name": "@hako1912/use-indexeddb",
"version": "0.0.1",
"private": false,
"main": "dist/index.js",
"types": "lib/index.d.ts",
"files": [
"dist/index.js",
"lib/index.d.ts"
],
"scripts": {
"dev": "webpack-dev-server --config webpack.dev.js --hot",
"build": "webpack --config webpack.prod.js"
},
"dependencies": {
"dexie": "^2.0.4",
"dexie-observable": "^1.0.0-beta.5",
"react-hot-loader": "^4.8.4",
"uuid": "^3.3.2"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@types/react": "^16.8.19",
"@types/react-dom": "^16.8.4",
"@types/uuid": "^3.4.4",
"babel-loader": "^8.0.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"clean-webpack-plugin": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"peer-deps-externals-webpack-plugin": "^1.0.4",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"ts-loader": "^5.4.3",
"tsconfig-paths": "^3.8.0",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^3.3.4000",
"uglifyjs-webpack-plugin": "^2.1.3",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1"
}
}