-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
56 lines (56 loc) · 1.71 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
{
"name": "scoreboard-obs-plugin",
"version": "0.0.1",
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "next build && node server.js",
"storybook": "start-storybook -p 9001 -s ./static",
"build-storybook": "build-storybook",
"install-redis": "./lib/redis/install.sh",
"redis": "./lib/redis/redis/src/redis-server",
"lint": "node ./node_modules/eslint/bin/eslint.js ./components/** -c ./.eslintrc.json --fix",
"prettier": "prettier-eslint --single-quote --trailing-comma all '{components,pages,src}/**/*.js' --write"
},
"engines": {
"node": ">10.8.0",
"yarn": ">1.9.4"
},
"dependencies": {
"animated": "^0.2.0",
"axios": "^0.15.3",
"babel-eslint": "^7.2.2",
"babel-plugin-styled-components": "^1.2.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.6.1",
"body-parser": "^1.15.2",
"classnames": "2.3.1",
"express": "4.17.1",
"firebase": "^4.1.3",
"ioredis": "4.27.8",
"mobx": "^3.1.7",
"mobx-react": "^4.1.3",
"next": "3.2.2",
"prop-types": "15.7.2",
"react": "^15.6.1",
"react-color": "2.19.3",
"react-dom": "^15.6.1",
"react-select": "1.2.1",
"repng": "sindresvendby/repng#4560c15c",
"styled-components": "^2.2.2"
},
"license": "MIT",
"devDependencies": {
"@storybook/addon-info": "^3.2.9",
"@storybook/addon-knobs": "^3.2.8",
"@storybook/react": "3.2.8",
"eslint": "^4.6.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "7.2.0",
"prettier": "^1.5.2",
"prettier-eslint": "^6.4.2",
"prettier-eslint-cli": "^4.1.1"
}
}