This repository has been archived by the owner on Dec 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.02 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
{
"name": "beep-beep-client",
"version": "0.1.0",
"description": "Proof-of-concept client using bamboo for beep-beep",
"main": "./src/index.js",
"private": true,
"contributors": [
"adzialocha"
],
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git://github.com/p2panda/beep-beep-client.git"
},
"scripts": {
"build": "npm run clear && npm run prepare && cross-env NODE_ENV=production webpack --mode production --progress",
"clear": "rimraf ./build",
"lint": "npm run lint:css && npm run lint:js",
"lint:css": "stylelint './src/**/*.js'",
"lint:js": "eslint --ignore-path .gitignore ./",
"prepare": "mkdirp ./build",
"serve": "npm run clear && npm run prepare && cross-env NODE_ENV=development webpack-dev-server",
"start": "npm run serve",
"watch": "cross-env NODE_ENV=development webpack --mode development --watch --progress"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@wasm-tool/wasm-pack-plugin": "1.3.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"cross-env": "^7.0.2",
"css-loader": "^3.5.3",
"dotenv": "^8.2.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^3.1.3",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"mkdirp": "^1.0.4",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"style-loader": "^1.2.1",
"stylelint": "^13.5.0",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.0.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"cbor": "^5.0.2",
"graphql-request": "^1.8.2",
"isomorphic-fetch": "^2.2.1",
"luxon": "^1.24.1"
}
}