-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.35 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
105
{
"name": "buy-me-a-coffee",
"version": "1.0.0",
"description": "Simple PWA leveraging the new Payment Request API",
"main": "src/app.js",
"scripts": {
"test": "env NODE_ENV=test karma start",
"watch:test": "npm test -- --auto-watch --no-single-run",
"coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"lint": "eslint src/*.js",
"lint:test": "eslint test/*.js",
"clean": "rimraf dist/*",
"dev": "webpack-dev-server --env.dev --hot",
"prebuild": "npm run clean",
"build": "webpack -p --env.prod",
"postbuild": "cp favicon.ico ./dist && cp ./src/manifest.json ./dist",
"validate": "npm-run-all --parallel lint build test",
"debug": "node-nightly --inspect --debug-brk node_modules/.bin/webpack --env.debug",
"debug:dev": "npm run debug -- --env.dev",
"debug:prod": "npm run debug -- --env.prod",
"deploy": "./scripts/deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zanonnicola/buy-me-a-coffee"
},
"keywords": [
"money",
"javascript",
"app",
"Money",
"PWA"
],
"author": "Nicola Zanon <[email protected]> (https://nicola-zanon.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zanonnicola/buy-me-a-coffee/issues"
},
"homepage": "https://github.com/zanonnicola/buy-me-a-coffee#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-plugin-istanbul": "^3.0.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.20.0",
"babel-preset-env": "^1.1.4",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2015-native-modules": "^6.9.4",
"babel-register": "^6.18.0",
"coveralls": "^2.11.15",
"css-loader": "0.23.1",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"expect": "^1.20.2",
"karma": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-coverage": "^1.1.1",
"karma-coveralls": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.1",
"mocha": "^3.2.0",
"npm-run-all": "^3.1.2",
"postcss": "^5.2.11",
"postcss-loader": "^1.2.1",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"surge": "^0.18.0",
"url-loader": "^0.5.7"
},
"dependencies": {
"autoprefixer": "^6.7.2",
"babel-runtime": "^6.20.0",
"chai": "^3.5.0",
"copy-webpack-plugin": "^4.0.1",
"extract-text-webpack-plugin": "^2.0.0-beta.3",
"html-webpack-plugin": "^2.25.0",
"import": "0.0.6",
"inline-manifest-webpack-plugin": "^3.0.1",
"lodash": "^4.17.4",
"money": "^0.2.0",
"offline-plugin": "^4.5.3",
"postcss-font-magician": "^1.6.0",
"precss": "^1.4.0",
"progress-bar-webpack-plugin": "^1.9.1",
"pwmetrics": "^1.2.4",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"redux-watch": "^1.1.1",
"sinon": "^1.17.7",
"webpack": "^2.2.1",
"webpack-config-utils": "^2.3.0",
"webpack-dev-server": "^2.1.0-beta.0",
"webpack-node-externals": "^1.5.4",
"whatwg-fetch": "^2.0.1"
}
}