-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.67 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.67 KB
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
{
"name": "token.frontender.info",
"version": "1.0.0",
"private": false,
"scripts": {
"start": "node --experimental-loader ./resolver.mjs --experimental-modules server.mjs",
"build": "docker build ./ -t frontendermagazine/token --label frontendermagazine",
"publish": "docker push frontendermagazine/token",
"lint": "eslint **.mjs --fix --color -f stylish"
},
"lint-staged": {
"*.mjs": "eslint --color -f stylish --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"description": "Tokens Frontender Magazine",
"keywords": [
"tokens",
"fm"
],
"repository": {
"type": "git",
"url": "https://github.com/FrontenderMagazineDevelopment/token.frontender.info.git"
},
"author": "Anton Nemtsev <thesilentimp@gmail.com>",
"contributors": [
{
"name": "Anton Nemtsev",
"email": "thesilentimp@gmail.com"
}
],
"license": "CC-BY-4.0",
"main": "server.js",
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.2",
"husky": "^4.2.5",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1"
},
"dependencies": {
"@godaddy/terminus": "^4.4.1",
"connect-mongo": "^3.2.0",
"dotenv": "^8.2.0",
"express-session": "^1.17.0",
"jsonwebtoken": "^8.5.1",
"jwt-builder": "^1.1.0",
"request": "^2.88.0",
"request-promise": "^4.2.5",
"restify": "^8.5.1",
"restify-cookies": "^0.2.6",
"uuid": "^3.4.0"
}
}