-
Notifications
You must be signed in to change notification settings - Fork 86
/
package.json
71 lines (71 loc) · 2.19 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
{
"name": "@hirosystems/todos",
"description": "A simple todos app powered by Stacks.js",
"author": "Michael Stivala <[email protected]> (https://michaelstivala.com/)",
"contributors": [
"Aaron Blankstein <[email protected]> (https://github.com/kantai)",
"Larry Salibra <[email protected]> (https://larrysalibra.com/)",
"Arjun Balaji <[email protected]> (https://github.com/arjunblj)",
"Kim Hallberg <[email protected]> (https://hallberg.kim/)",
"Guy Lepage <[email protected]> (https://lepage.cc/)",
"Jack Zampolin (https://github.com/jackzampolin)",
"Moxiegirl (https://github.com/moxiegirl)",
"Sahana Srinivasan (https://github.com/Sahana-Srinivasan)",
"Mark Hendrickson (https://github.com/markmhx)"
],
"repository": {
"type": "git",
"url": "https://github.com/blockstack/todos"
},
"version": "0.2.0",
"private": true,
"dependencies": {
"@blockstack/ui": "^2.12.14",
"@emotion/core": "^11.0.0",
"@emotion/css": "^11.0.0",
"@emotion/react": "^11.1.1",
"@emotion/styled": "^11.0.0",
"@stacks/connect": "^6.0.0",
"@stacks/profile": "^1.0.0-beta.19",
"@stacks/storage": "^1.0.0-beta.19",
"blockstack": "^21.1.1",
"export-from-json": "^1.3.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.1",
"styled-components": "^5.2.1",
"uuid": "^8.1.0"
},
"prettier": "@blockstack/prettier-config",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint src/**/*.{js,jsx}",
"lint:fix": "eslint src/**/*.{jsx,js} --fix"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@blockstack/eslint-config": "^1.0.5",
"@blockstack/prettier-config": "0.0.6",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint-config-react-app": "^5.2.1"
}
}