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
|
{
"name": "decentralized-chat",
"version": "1.0.0",
"description": "Decentralized chatting made easy!",
"repository": {
"type": "git",
"url": "git+https://github.com/vmasto/express-babel.git"
},
"author": "Vassilis Mastorostergios <vmasto@gmail.com>",
"license": "MIT",
"main": "dist/index.js",
"engines": {
"node": "~6.9.1",
"npm": ">=3.10.0"
},
"scripts": {
"dev": "nodemon src/index.js --exec \"node -r dotenv/config -r babel-register\" & npm run watch",
"watch": "npm run build && onchange public/styles/* -- npm run css & watchify public/scripts/*.js -o dist/app.js -v",
"css": "node-sass public/styles/main.sass dist/app.css --output-style compressed",
"build": "rm -r dist/* && npm run css && browserify public/scripts/*.js -o dist/app.js && cp public/additional/* dist/",
"server": "node src/server.js"
},
"keywords": [
"express",
"babel",
"boilerplate",
"scaffold",
"es6",
"es2015",
"es2016",
"es2017",
"jest",
"eslint"
],
"dependencies": {
"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",
"dexie": "^2.0.4",
"drag-drop": "^4.2.0",
"ejs": "^2.6.1",
"express": "^4.16.4",
"jquery": "^3.3.1",
"morgan": "^1.9.0",
"nanoid": "^2.0.1",
"node-sass": "^4.11.0",
"onchange": "^5.2.0",
"openpgp": "^4.4.5",
"peer": "^0.2.10",
"pug": "^2.0.0-beta11",
"rimraf": "^2.6.2"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.6.3",
"babel-eslint": "^8.2.3",
"babel-jest": "^21.2.0",
"babel-register": "^6.26.0",
"browserify": "^16.2.3",
"dotenv": "^4.0.0",
"eslint": "^4.12.1",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^21.3.2",
"eslint-watch": "^3.1.3",
"jest": "^23.6.0",
"nodemon": "^1.18.9",
"supertest": "^3.0.0",
"watchify": "^3.11.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"
}
}
|