-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.54 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
{
"name": "ieee-election",
"version": "1.1.0",
"description": "IEEE THKU Online Election App",
"license": "UNLICENSED",
"author": "654wak654",
"type": "module",
"scripts": {
"build": "node clear-dist.mjs && parcel build app/index.html --no-source-maps --public-url './'",
"dev": "parcel app/index.html --port 5000 --no-cache",
"start": "node -r dotenv/config server/server.js",
"docker": "npm run build && npm start",
"lint": "eslint server && eslint app/app.js"
},
"browserslist": [
"since 2020 and last 3 versions and > 0.1%"
],
"dependencies": {
"@babel/runtime": "^7.14.0",
"@babel/runtime-corejs3": "^7.14.0",
"alpinejs": "^2.8.2",
"bulma": "^0.9.2",
"bulmaswatch": "^0.8.1",
"sha3": "^2.1.4",
"tippy.js": "^6.3.1"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.14.1",
"@parcel/packager-raw-url": "^2.0.0-beta.2",
"@parcel/transformer-sass": "^2.0.0-beta.2",
"@parcel/transformer-webmanifest": "^2.0.0-beta.2",
"@types/ws": "^7.4.2",
"babel-preset-minify": "^0.5.1",
"dotenv": "^7.0.0",
"eslint": "^7.25.0",
"eslint-config-es": "^3.28.29",
"got": "^11.8.2",
"ioredis": "^4.27.2",
"nanoid": "^3.1.22",
"parcel": "^2.0.0-beta.2",
"posthtml-include": "^1.7.1",
"sass": "^1.32.12",
"ws": "^7.4.5"
}
}