forked from CirclesUBI/circles-myxogastria
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.75 KB
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
{
"name": "circles-baby-phoenix",
"version": "0.2.0",
"description": "Webapp and mobile client for Circles",
"main": "src/index.js",
"private": true,
"contributors": [
"adzialocha"
],
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "git://github.com/CirclesUBI/circles-baby-phoenix.git"
},
"scripts": {
"build": "npm run clear && cross-env NODE_ENV=production webpack",
"clear": "rimraf ./build",
"lint": "npm run lint:css && npm run lint:js",
"lint:css": "stylelint './src/**/*.js'",
"lint:js": "eslint .",
"serve": "cross-env NODE_ENV=development webpack-dev-server",
"start": "npm run serve",
"test": "cross-env NODE_ENV=test jest",
"test:watch": "npm run test -- --watch"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@testing-library/jest-dom": "^5.1.0",
"@testing-library/react": "^9.4.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"cross-env": "^7.0.0",
"css-loader": "^3.4.2",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"file-loader": "^5.0.2",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.2.1",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.1",
"style-loader": "^1.1.3",
"stylelint": "^13.0.0",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-standard": "^19.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-custom-processor-loader": "^0.6.0",
"stylelint-order": "^4.0.0",
"stylelint-processor-styled-components": "^1.9.0",
"terser-webpack-plugin": "^2.3.4",
"truffle": "^5.1.11",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.2"
},
"dependencies": {
"@circles/core": "^0.8.2",
"@sentry/browser": "^5.12.0",
"bip39": "^3.0.2",
"clipboard": "^2.0.4",
"immutability-helper": "^3.0.1",
"isomorphic-fetch": "^2.2.1",
"jazzicon": "^1.5.0",
"luxon": "^1.22.0",
"qr-scanner": "^1.1.1",
"qrcode": "^1.4.4",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5",
"redux-create-action-types": "^2.1.0",
"redux-i18n": "^1.5.19",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"styled-components": "^5.0.0",
"styled-normalize": "^8.0.7",
"web3": "^1.2.6"
}
}