-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.23 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
{
"name": "hello-blockstack",
"version": "0.0.0",
"description": "A simple Blockstack app using ReactJS",
"main": "index.js",
"publishConfig": { "registry": "https://npm.pkg.github.com/" }
"scripts": {
"start": "webpack-dev-server",
"build": "webpack -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blockstack/hello-blockstack.git"
},
"bugs": {
"url": "https://github.com/blockstack/hello-blockstack/issues"
},
"homepage": "https://github.com/blockstack/hello-blockstack#readme",
"author": "",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.0",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.28.0",
"json-loader": "^0.5.4",
"path": "^0.12.7",
"style-loader": "^0.16.1",
"url-loader": "^0.5.8",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.4.2"
},
"dependencies": {
"blockstack": "^19.1.0",
"bootstrap": "^3.3.7",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-router-dom": "^5.0.1",
"uglify-es-webpack-plugin": "^0.10.0"
}
}