-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 1.51 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
{
"name": "www.mercode.org",
"version": "0.0.1",
"description": "The https://mercode.org homepage",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "parcel public/index.pug",
"build": "rm -rf dist && parcel build public/index.pug && sed 's|\"/|\"https://mercode.org/|g' -i dist/portal.html",
"update": "git pull && git clean -dxf && yarn && yarn build && rm -rf /var/www/mercode.org && mv dist /var/www/mercode.org",
"dev": "rm -rf yarn.lock node_modules .parcel-cache && yarn install && yarn link parcel-transformer-google-fonts && yarn link parcel-transformer-localize && yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mercode-org/www.mercode.org.git"
},
"keywords": [
"mercode",
"website"
],
"author": "Various Authors",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/mercode-org/www.mercode.org/issues"
},
"homepage": "https://github.com/mercode-org/www.mercode.org#readme",
"dependencies": {
"core-js": "^3",
"fontawesome-4.7": "^4.7.0",
"jquery": "^3.4.1",
"parcel": "2.0.0-alpha.2.1",
"parcel-plugin-imagemin": "^3.0.0",
"parcel-transformer-google-fonts": "^0.1.3",
"parcel-transformer-localize": "^0.1.0",
"parcel-transformer-strip-index-html": "^0.1.1"
},
"disabled": {
"_core_js": "core-js@^3 is installed because workarround"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-transform-runtime": "^7.6.2",
"pug": "^2.0.4"
}
}