-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.95 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
{
"name": "ssch-site",
"version": "1.0.0",
"description": "",
"main": "main.ts",
"scripts": {
"build": "NODE_ENV=production gulp && webpack --mode production",
"watch": "gulp watch",
"livereload": "live-reload --port 1337 .",
"debug": "DEBUG=express:* ts-node-dev main.ts --dev",
"debug-https": "DEBUG=express:* ts-node-dev main.ts --https",
"dev": "ts-node-dev main.ts --dev",
"dev-https": "ts-node-dev main.ts --https",
"start": "node server-bundle.js",
"start-https": "node server-bundle.js --https"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ssch1337/ssch-site.git"
},
"author": "Sergey Scheglov",
"license": "ISC",
"bugs": {
"url": "https://github.com/ssch1337/ssch-site/issues"
},
"homepage": "https://github.com/ssch1337/ssch-site#readme",
"dependencies": {
"@types/animejs": "^3.1.4",
"@types/express": "^4.17.13",
"@types/node": "^16.4.1",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@types/react-redux": "^7.1.18",
"@types/rx": "^4.1.2",
"@types/three": "^0.130.1",
"animejs": "^3.2.1",
"browserify": "^17.0.0",
"express": "^4.17.1",
"glslify-require": "^1.1.0",
"gulp": "^4.0.2",
"gulp-if": "^3.0.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.0.0",
"gulp-uglify": "^3.0.2",
"helmet": "^4.6.0",
"morgan": "^1.10.0",
"pug": "^3.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.4",
"redux": "^4.1.0",
"rxjs": "^7.2.0",
"sass": "^1.35.2",
"three": "^0.130.1",
"ts-loader": "^9.2.4",
"tsify": "^5.0.4",
"typescript": "^4.3.5",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"webpack": "^5.47.0"
},
"devDependencies": {
"connect-livereload": "^0.6.1",
"fancy-log": "^1.3.3",
"gulp-sourcemaps": "^3.0.0",
"ts-node-dev": "^1.1.8",
"watchify": "^4.0.0",
"webpack-cli": "^4.7.2"
}
}