-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.08 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
{
"name": "blind-painter",
"version": "1.0.0",
"private": true,
"description": "Can you paint blind? or will you be found out?",
"author": "Erik Hughes",
"license": "GPL-3.0",
"main": "server/index.js",
"scripts": {
"start": "nodemon",
"start:dist": "node dist/index.js",
"build": "next build && tsc --project tsconfig.server.json",
"debug": "npm --node-options=--inspect run start",
"docker": "docker run -p 3005:3005 blind-painter:latest"
},
"dependencies": {
"@google-cloud/text-to-speech": "2.3.0",
"core-js": "3.6.4",
"dotenv": "8.2.0",
"express": "4.17.1",
"hashids": "2.2.1",
"next": "9.3.1",
"nosleep.js": "0.9.0",
"qrcode": "1.4.4",
"rate-limiter-flexible": "2.1.3",
"react": "16.13.0",
"react-dom": "16.13.0",
"sockjs": "0.3.20",
"sockjs-client": "1.4.0",
"wordcloud": "1.1.1"
},
"devDependencies": {
"@babel/plugin-transform-typescript": "7.8.7",
"@svgr/webpack": "5.2.0",
"@typescript-eslint/eslint-plugin": "2.24.0",
"@typescript-eslint/parser": "2.24.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.19.0",
"file-loader": "6.0.0",
"nodemon": "2.0.2",
"postcss-import": "12.0.1",
"postcss-mixins": "6.2.3",
"postcss-preset-env": "6.7.0",
"prettier": "1.19.1",
"prettier-loader": "3.3.0",
"rimraf": "3.0.2",
"stylelint": "13.2.1",
"stylelint-config-prettier": "8.0.1",
"stylelint-config-standard": "20.0.0",
"stylelint-webpack-plugin": "1.2.3",
"svg-sprite-loader": "4.2.1",
"svgo": "1.3.2",
"svgo-loader": "2.2.1",
"ts-node": "8.6.2",
"tsconfig-paths": "3.9.0",
"typescript": "3.8.3",
"url-loader": "4.0.0"
},
"optionalDependencies": {
"@types/express": "4.17.3",
"@types/node": "13.9.1",
"@types/qrcode": "1.3.4",
"@types/react": "16.9.23",
"@types/react-dom": "16.9.5",
"@types/sockjs": "0.3.31",
"@types/sockjs-client": "1.1.1",
"@types/webpack-env": "1.15.1",
"@types/wordcloud": "1.1.1"
}
}