-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "ipfs-sound-uploader",
"version": "0.0.1",
"main": "main.js",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-serve --content",
"build": "cross-env NODE_ENV=production webpack -p",
"daemon": "./node_modules/ipfs/src/cli/bin.js daemon"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"ipfs": "^0.28.2",
"ipfs-api": "^20.0.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"redux-saga": "^0.16.0"
},
"devDependencies": {
"@types/react": "^16.3.11",
"@types/react-dom": "^16.0.5",
"@types/react-redux": "^5.0.16",
"awesome-typescript-loader": "^5.0.0",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^5.1.4",
"html-webpack-plugin": "^3.2.0",
"redux-devtools-extension": "^2.13.2",
"tslint": "^5.9.1",
"tslint-config-airbnb": "^5.8.0",
"typescript": "^2.8.1",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14",
"webpack-serve": "^0.3.1"
}
}