-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
94 lines (94 loc) · 2.81 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
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
93
94
{
"name": "openbazaar-web",
"version": "0.1.0",
"private": true,
"dependencies": {
"array-move": "^2.1.0",
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"base64-js": "^1.3.0",
"bip39": "^2.5.0",
"bitcoin-convert": "^1.0.4",
"connected-react-router": "^6.2.2",
"crypto": "^1.0.1",
"ed2curve": "^0.2.1",
"history": "^4.7.2",
"ipfs": "^0.36.3",
"jquery": "^3.3.1",
"js-sha256": "^0.9.0",
"libp2p-crypto": "^0.16.0",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"multihashes": "^0.4.14",
"node-polyglot": "^2.3.0",
"node-sass": "^4.11.0",
"object-sizeof": "^1.4.0",
"peer-id": "^0.12.2",
"pouchdb-adapter-http": "^6.4.3",
"pouchdb-adapter-idb": "^6.4.3",
"pouchdb-adapter-memory": "^7.0.0",
"pouchdb-server": "^4.1.0",
"prettier": "^1.16.1",
"prop-types": "15.5.9",
"protobufjs": "^6.8.8",
"query-string": "^6.2.0",
"react": "^16.8.3",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.7.0",
"react-ionicons": "^3.0.1",
"react-redux": "^6.0.0",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.3",
"react-tippy": "^1.2.3",
"redux-saga": "^1.0.2",
"redux-starter-kit": "^0.4.0",
"rxdb": "^8.2.0",
"rxjs": "^6.5.2",
"sass-mq": "^5.0.0",
"tweetnacl": "^1.0.1",
"tweetnacl-util": "^0.15.0",
"uuid": "^3.3.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --single-quote --write",
"git add"
]
},
"scripts": {
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/styles/",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/styles/ --watch --recursive",
"start-js": "cross-env NODE_PATH=src react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build-js": "cross-env NODE_PATH=src react-scripts build",
"copyBuiltIndex": "cp build/index.html build/200.html",
"build": "npm-run-all build-css build-js",
"surge": "surge build --domain https://ob-web.surge.sh",
"deploy": "npm-run-all build copyBuiltIndex surge",
"test": "cross-env NODE_PATH=src react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"prettier": "./node_modules/.bin/prettier --single-quote --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"db-server": "pouchdb-server -d ./db"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"cross-env": "^5.2.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.1",
"node-sass-chokidar": "^1.3.4",
"npm-run-all": "^4.1.5"
}
}