-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
134 lines (134 loc) · 4.06 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "texx",
"version": "1.0.0",
"description": "Decentralized chatting made easy!",
"repository": {
"type": "git",
"url": "git+https://github.com/texxme/texx.git"
},
"author": "Marvin Borner <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"engines": {
"node": "~6.9.1",
"npm": ">=3.10.0"
},
"scripts": {
"dev": "npm run watch & nodemon app.js --exec \"node -r dotenv/config -r babel-register\"",
"watch": "npm run debug && onchange public/styles/* -- npm run css & onchange public/scripts/* -- npm run debug",
"css": "node-sass public/styles/main.sass dist/app.css && cp public/images/* dist/",
"debug": "rm -r dist/* && npm run css && browserify public/scripts/main.js -o dist/app.js",
"build": "rm -r dist/* && node-sass public/styles/main.sass dist/app.css --output-style compressed && cp public/images/* dist/ && browserify public/scripts/main.js -o dist/temp.js && minify dist/temp.js > dist/app.js && pug views/index.pug --out dist && rm dist/temp*",
"single": "rm -rf dist/* && node-sass public/styles/main.sass dist/app.css --output-style compressed && browserify public/scripts/main.js -o dist/temp.js && minify dist/temp.js > dist/app.js && rm dist/temp.* && pug views/index.pug --out dist && echo '<script>'$(cat dist/app.js)'</script>' >> dist/index.html && echo '<style>'$(cat dist/app.css)'</style>' >> dist/index.html && html-minifier --collapse-whitespace --remove-comments --remove-optional-tags --remove-redundant-attributes --remove-script-type-attributes --remove-tag-whitespace --use-short-doctype --minify-css true --minify-js true dist/index.html > dist/complete.html"
},
"keywords": [
"express",
"babel",
"boilerplate",
"scaffold",
"es6",
"es2015",
"es2016",
"es2017",
"jest",
"eslint"
],
"dependencies": {
"@fortawesome/fontawesome-free": "^5.6.3",
"babel-cli": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"body-parser": "^1.18.2",
"bulma": "^0.7.2",
"bulma-tooltip": "^2.0.2",
"dexie": "^2.0.4",
"drag-drop": "^4.2.0",
"ejs": "^2.6.1",
"express": "^4.16.4",
"fingerprintjs2": "^2.0.6",
"html-minifier": "^3.5.21",
"jquery": "^3.3.1",
"jquery-ui-bundle": "^1.12.1-migrate",
"jssha": "^2.3.1",
"minify": "^4.1.0",
"moment": "^2.24.0",
"morgan": "^1.9.0",
"onchange": "^5.2.0",
"openpgp": "^4.4.5",
"peer": "^0.2.10",
"pug": "^2.0.0-beta11",
"pug-cli": "^1.0.0-alpha6",
"rimraf": "^2.6.2",
"sweetalert": "^2.1.2",
"webrtc-adapter": "^7.2.0",
"xkcd-password": "^2.0.0"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"babel-jest": "^21.2.0",
"babel-register": "^6.26.0",
"browserify": "^16.2.3",
"dotenv": "^4.0.0",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^21.3.2",
"eslint-watch": "^3.1.3",
"jest": "^23.6.0",
"node-sass": "^4.11.0",
"nodemon": "^1.18.9",
"supertest": "^3.0.0"
},
"browser": {
"openpgp": "openpgp/dist/openpgp.min.js"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
],
"plugins": [
"transform-object-rest-spread",
"transform-class-properties"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"plugins": [
"import",
"jest"
],
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
},
"env": {
"node": true,
"jest": true
},
"extends": [
"eslint:recommended"
],
"rules": {
"jest/no-focused-tests": 2,
"jest/no-identical-title": 2
}
},
"jest": {
"testEnvironment": "node"
},
"bugs": {
"url": "https://github.com/vmasto/express-babel/issues"
},
"homepage": "https://github.com/vmasto/express-babel#readme",
"directories": {
"test": "test"
}
}