-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.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
{
"name": "nimiq-popup-shop",
"version": "1.0.0",
"description": "Client side, decentralized, minimal shop solution using IPFS and the Nimiq blockchain.",
"main": "nimiq-shop.js",
"module": "nimiq-shop.js",
"scripts": {
"start": "webpack-dev-server --config ./webpack.development.js",
"build": "webpack --config ./webpack.production.js",
"docs": "yarn build && webpack --config ./webpack.docs.js && rm docs/main.js",
"test": "karma start --single-run --browsers ChromeHeadless karma.conf.js",
"fix-ts": "eslint --fix 'src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/svub/nimiq-popup-shop.git"
},
"keywords": [
"nimiq",
"ipfs",
"shop",
"javascript",
"client-side"
],
"author": "Sven Buschbeck, Jens Krause",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/svub/nimiq-popup-shop/issues"
},
"homepage": "https://github.com/svub/nimiq-popup-shop#readme",
"devDependencies": {
"@types/jasmine": "^3.4.2",
"@typescript-eslint/eslint-plugin": "^2.5.0",
"@typescript-eslint/parser": "^2.5.0",
"copy-webpack-plugin": "^5.0.5",
"css-loader": "^3.2.0",
"dotenv-webpack": "^1.7.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"html-webpack-plugin": "^3.2.0",
"jasmine-core": "^3.5.0",
"karma": "^4.3.0",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^2.0.1",
"karma-webpack": "^4.0.2",
"prettier": "^1.18.2",
"style-loader": "^1.0.0",
"ts-loader": "^6.2.0",
"typescript": "^3.6.3",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2"
},
"dependencies": {
"@nimiq/core": "^1.5.3",
"@nimiq/core-web": "^1.5.3",
"@nimiq/hub-api": "^1.0.1",
"@types/ipfs": "https://github.com/survirtual/types-ipfs",
"core-js": "^3.3.3",
"ipfs": "^0.39.0",
"lit-element": "^2.2.1"
}
}