-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.64 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.64 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "bitor",
"version": "1.0.1",
"description": "",
"scripts": {
"start": "webpack-dev-server --mode=development --config ./build/webpack.dev.js --watch --color --progress",
"dev": "webpack --mode=development --config ./build/webpack.dev.js --watch --progress --color",
"build": "webpack --mode=production --config ./build/webpack.prod.js --progress --color",
"push": "git add . && git commit -m 'update' && npm version patch && git push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitorjs/bitor.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/bitorjs/bitor/issues"
},
"homepage": "https://github.com/bitorjs/bitor#readme",
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"browsers": [
"last 1 Chrome versions"
]
}
}
],
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-export-default-from",
"@babel/plugin-proposal-export-namespace-from",
"@babel/plugin-syntax-export-namespace-from",
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
],
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
}
]
]
},
"dependencies": {
"axios": "^0.18.0",
"bitorjs": "0.0.19",
"bitorjs-application": "^1.0.9",
"bitorjs-decorators": "^1.0.1",
"bitorjs-store": "^1.0.3",
"normalize.css": "^8.0.1",
"react": "^16.8.2",
"react-dom": "^16.8.2"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-export-namespace-from": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.4.7",
"babel-loader": "^8.0.5",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^1.0.1",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^4.0.0-beta.5",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.4.5",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"reflect-metadata": "^0.1.13",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1"
}
}