-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.68 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
{
"name": "doodle-chat",
"version": "1.0.0",
"description": "A web recreation of Pictochat",
"main": "server/index.js",
"scripts": {
"dev": "npx http-server website 8080 -o",
"clear": "node scripts/clear.js",
"sass_compile": "sass client/sass/style.sass client/public/css/style.css --watch",
"typescript_compile": "npx --no-install tsc",
"watch": "gulp watch",
"init": "gulp run",
"minify_js": "npx --no-install uglifyjs-folder --log-level warning -x .js ./website/script/ -eo ./website/script/",
"mv_website_js": "node scripts/mv",
"build_dev": "npm run typescript_compile && npm run mv_website_js && npm run sass_compile",
"build": "npm run clear && npm run typescript_compile && npm run mv_website_js && npm run minify_js && npm run sass_compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Checker8763/Doodle-Chat"
},
"author": "Raffael E. Schaefer, Tomek Kochanowsky",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/Checker8763/Doodle-Chat/issues"
},
"homepage": "https://github.com/Checker8763/Doodle-Chat#readme",
"devDependencies": {
"browser-sync": "^2.27.10",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-htmlmin": "^5.0.1",
"gulp-imagemin": "^7.1.0",
"gulp-purgecss": "^4.1.3",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-uglify": "^3.0.2",
"http-server": "^14.1.1",
"sass": "^1.54.9",
"terser": "^5.7.0",
"typescript": "^4.8.3"
},
"dependencies": {
"express": "^4.18.1",
"socket.io": "^4.3.1",
"uglifyjs-folder": "^3.1.3"
}
}