-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
31 lines (31 loc) · 1009 Bytes
/
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
{
"name": "discord-chat-replica",
"version": "1.0.0",
"main": "index.js",
"author": "Cynthia <[email protected]>",
"license": "OSL-3.0",
"scripts": {
"build-scss": "sass -s compressed style/style.scss:dist/style.css && node dl-font.js",
"build-js": "esbuild src/index.js --outfile=dist/script.js --bundle --minify --target=chrome85,firefox81,safari13,edge86 --define:process.env.NODE_ENV='\"production\"'",
"build": "pnpm run build-js && pnpm run build-scss"
},
"dependencies": {
"ejs": "^3.1.5",
"highlight.js": "^10.4.1",
"html-minifier": "^4.0.0",
"mime-types": "^2.1.27",
"punycode": "^2.1.1",
"simple-markdown": "^0.7.2",
"twemoji": "^13.0.1"
},
"devDependencies": {
"esbuild": "^0.8.26",
"eslint": "^7.16.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"sass": "^1.30.0"
}
}