-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
79 lines (79 loc) · 2.75 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
71
72
73
74
75
76
77
78
79
{
"name": "savetheinternet",
"version": "1.0.0",
"description": "Save the internet",
"main": "./src/app.ts",
"scripts": {
"postsetup": "sudo npm install -g typescript",
"build": "tsc --p ./tsconfig-es6.json && tsc --p ./tsconfig-es5.json",
"watch": "npm run build -- -w",
"start": "cross-env NODE_ENV=production node ./dist/app.js",
"dev": "npm run build && node ./dist/app.js",
"lint": "tslint -p './' -e 'src/assets/js/*'",
"assets-dev": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"assets-watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"assets-hot": "cross-env NODE_ENV=development webpack-dev-server --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"assets-production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"engines": {
"node": ">=8.11.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/savetheinternetinfo/website.git"
},
"license": "Copyrighted - CC BY-NC-ND",
"bugs": {
"url": "https://github.com/savetheinternetinfo/website/issues"
},
"homepage": "https://github.com/savetheinternetinfo/website#readme",
"devDependencies": {
"@types/express": "^4.16.0",
"@types/fs-extra": "^5.0.3",
"@types/joi": "^14.3.2",
"@types/jquery": "^3.3.4",
"@types/leaflet": "^1.2.9",
"@types/masonry-layout": "^4.2.0",
"@types/node": "^10.12.2",
"@types/sharp": "^0.17.8",
"@types/winston": "^2.3.9",
"cssnano": "^3.10.0",
"font-awesome": "^4.7.0",
"jquery": "^3.3.1",
"laravel-mix": "^2.1.11",
"tailwindcss": "^0.6.1",
"ts-loader": "^3.5",
"tslint": "^5.10.0",
"typescript": "^2.9.2"
},
"dependencies": {
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"cross-env": "^5.2.0",
"dotenv": "^6.0.0",
"ejs": "^2.6.1",
"express": "^4.16.3",
"express-github-webhook": "^1.0.6",
"flag-icon-css": "^3.0.0",
"fs-extra": "^6.0.1",
"googleapis": "^32.0.0",
"got": "^8.3.2",
"hoek": "^4.2.1",
"i18n": "^0.8.3",
"joi": "^14.3.1",
"leaflet": "^1.3.4",
"masonry-layout": "^4.2.1",
"metascraper": "^3.11.8",
"moment": "^2.22.2",
"node-cache": "^4.2.0",
"nodemailer": "^4.6.7",
"recaptcha2": "^1.3.2",
"serve-favicon": "^2.5.0",
"sharp": "^0.20.4",
"simplelightbox": "^1.13.0",
"twitter": "^1.7.1",
"typed.js": "^2.0.8",
"validate.js": "^0.12.0",
"winston": "^3.0.0"
}
}