forked from go-between/musicbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.11 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "musicbox",
"version": "1.0.0",
"description": "The Musicbox Frontend",
"main": "index.js",
"scripts": {
"build:prod": "webpack --config webpack.prod.js",
"graphql-gen": "graphql-codegen",
"lint": "eslint './src/**/*.{ts,tsx}'",
"lint:fix": "eslint --fix './src/**/*.{ts,tsx}'",
"start": "webpack-dev-server --mode development --hot --open --config webpack.dev.js",
"tsc": "tsc --noEmit --skipLibCheck",
"tsc:watch": "npm run tsc -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/go-between/musicbox.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/go-between/musicbox/issues"
},
"homepage": "https://github.com/go-between/musicbox#readme",
"devDependencies": {
"@babel/cli": "7.7.7",
"@babel/core": "7.7.7",
"@babel/plugin-proposal-class-properties": "7.7.4",
"@babel/plugin-proposal-numeric-separator": "7.7.4",
"@babel/plugin-proposal-object-rest-spread": "7.7.7",
"@babel/plugin-proposal-optional-chaining": "^7.7.5",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "7.7.7",
"@babel/preset-react": "7.7.4",
"@babel/preset-typescript": "7.7.7",
"@babel/runtime": "^7.7.7",
"@graphql-codegen/cli": "^1.14.0",
"@graphql-codegen/fragment-matcher": "^1.14.0",
"@graphql-codegen/typescript": "^1.14.0",
"@types/dotenv-webpack": "^1.7.0",
"@types/react-beautiful-dnd": "^12.1.1",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"babel-loader": "8.0.6",
"clean-webpack-plugin": "^3.0.0",
"dotenv-webpack": "^1.7.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^3.2.0",
"prettier": "^1.19.1",
"typescript": "3.7.4",
"webpack": "4.42.0",
"webpack-cli": "3.3.10",
"webpack-dev-server": "3.10.1"
},
"dependencies": {
"@airbrake/browser": "^1.1.2",
"@apollo/react-hooks": "^3.1.3",
"@emotion/core": "^10.0.27",
"@emotion/styled": "^10.0.27",
"@rebass/forms": "^4.0.6",
"@styled-system/css": "^5.1.4",
"@types/react": "16.9.17",
"@types/react-dom": "16.9.4",
"@types/react-gravatar": "^2.6.7",
"@types/react-router-dom": "^5.1.3",
"@types/react-toast-notifications": "^2.4.0",
"@types/rebass": "^4.0.4",
"@types/rebass__forms": "^4.0.0",
"@types/styled-system": "^5.1.4",
"@types/styled-system__css": "^5.0.4",
"apollo-boost": "^0.4.7",
"emotion-theming": "^10.0.27",
"graphql": "^14.5.8",
"moment": "^2.24.0",
"react": "16.12.0",
"react-beautiful-dnd": "^13.0.0",
"react-dom": "16.12.0",
"react-feather": "^2.0.3",
"react-gravatar": "^2.6.3",
"react-player": "2.6.1",
"react-rnd": "10.2.2",
"react-router-dom": "^5.1.2",
"react-toast-notifications": "^2.4.0",
"rebass": "^4.0.7",
"styled-system": "^5.1.4",
"use-debounce": "^3.3.0",
"webpack-merge": "^4.2.2"
}
}