forked from amiuhle/kasisto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.95 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
95
96
97
98
99
100
101
102
103
104
{
"name": "kasisto",
"private": true,
"version": "0.1.0-alpha.2",
"description": "A Karbo Point of Sale payment system",
"repository": "https://github.com/amiuhle/kasisto",
"keywords": [
"monero",
"xmr",
"point-of-sale",
"payment-system",
"cryptocurrency"
],
"author": "Timo Uhlmann",
"main": "src/index.js",
"scripts": {
"start": "yarn run serve:dev",
"test": "jest",
"posttest": "yarn lint",
"test:watch": "jest --watch",
"serve:dev": "webpack-dev-server --env dev",
"serve:dist": "webpack-dev-server --env dist --progress",
"dist": "yarn run clean && npm run copy && webpack --progress --bail --env dist",
"publish:staging": "yarn run dist && gh-pages -d dist",
"lint": "standard 'src/**/*.js'",
"clean": "rimraf dist/*",
"copy": "copyfiles -f ./src/index.html ./dist && copyfiles -u 1 \"./src/static/**\" ./dist"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^23.0.0-alpha.0",
"babel-loader": "^7.1.4",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"copyfiles": "^2.0.0",
"css-loader": "^0.28.11",
"file-loader": "^1.1.11",
"gh-pages": "^1.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.4.2",
"nock": "^9.2.3",
"node-fetch": "^2.1.1",
"node-sass": "^4.7.2",
"null-loader": "^0.1.1",
"postcss": "^6.0.19",
"postcss-loader": "^2.1.1",
"react-test-renderer": "^16.2.0",
"redux-mock-store": "^1.5.1",
"redux-saga-test-plan": "^3.5.1",
"rimraf": "^2.5.2",
"sass-loader": "^6.0.7",
"standard": "^11.0.1",
"style-loader": "^0.20.3",
"svg-fill-loader": "^0.0.8",
"svgo": "^1.0.5",
"svgo-loader": "^2.1.0",
"url-loader": "^1.0.1",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12",
"webpack-dev-server": "^3.1.1"
},
"dependencies": {
"big.js": "^5.0.3",
"camelcase-keys": "^4.2.0",
"cross-env": "^5.1.4",
"date-fns": "^1.29.0",
"history": "^4.6.3",
"inuitcss": "^6.0.0",
"prop-types": "^15.6.1",
"qrcode.react": "^0.8.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^4.0.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.1.1",
"redux": "^3.7.0",
"redux-form": "^7.3.0",
"redux-logger": "^3.0.6",
"redux-saga": "^0.16.0",
"redux-thunk": "^2.2.0",
"snakecase-keys": "^1.1.1",
"svg-sprite-loader": "^3.7.1",
"uuid": "^3.2.1"
},
"jest": {
"setupFiles": [
"./setupJest.js"
],
"testMatch": [
"**/__tests__/**/*.js?(x)"
],
"moduleNameMapper": {
".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2|svg)$": "identity-obj-proxy"
}
},
"standard": {
"parser": "babel-eslint"
}
}