-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.54 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
{
"name": "@tattoo/browser",
"version": "0.0.1",
"description": "Tattoo - Browser",
"author": "Alejandro Ojeda Gutierrez",
"private": true,
"main": "dist/index.html",
"repository": {
"type": "git",
"url": "https://github.com/localnet/tattoo-browser.git"
},
"scripts": {
"start": "node makefile start",
"lint": "node makefile lint",
"pretty": "node makefile pretty",
"build": "node makefile build",
"watch": "node makefile watch"
},
"dependencies": {
"@apollo/client": "^3.3.19",
"graphql": "^15.5.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"styled-components": "^5.3.0",
"tslib": "^2.2.0"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-react": "^7.13.13",
"@svgr/webpack": "^5.5.0",
"@types/react": "^17.0.9",
"@types/react-dom": "^17.0.6",
"@types/react-router-dom": "^5.1.7",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"babel-loader": "^8.2.2",
"dotenv": "^10.0.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^5.3.1",
"prettier": "^2.3.1",
"serve": "^11.3.2",
"shelljs": "^0.8.4",
"ts-loader": "^9.2.3",
"typescript": "^4.2.4",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
}
}