-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.22 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
{
"name": "article_frontender_magazine",
"version": "1.0.1",
"private": false,
"description": "Articles of the Frontender Magazine",
"keywords": [
"frontender",
"frontender.info",
"articles"
],
"author": "Anton Nemtsev <[email protected]>",
"bugs": "https://github.com/FrontenderMagazineDevelopment/article.frontender.info/issues",
"homepage": "https://github.com/FrontenderMagazineDevelopment/article.frontender.info",
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "https://github.com/FrontenderMagazineDevelopment/article.frontender.info.git"
},
"contributors": [
{
"name": "Anton Nemtsev",
"email": "[email protected]"
}
],
"license": "CC-BY-4.0",
"main": "build/server.js",
"dependencies": {
"@babel/runtime": "^7.10.2",
"@frontender-magazine/models": "^1.2.0",
"@godaddy/terminus": "^4.4.1",
"acorn": "^7.3.1",
"acorn-jsx": "^5.2.0",
"amqplib": "^0.5.6",
"dotenv": "^8.2.0",
"joi": "^14.3.1",
"mongoose": "^5.9.19",
"restify": "^8.5.1",
"restify-cookies": "^0.2.6",
"restify-joi-middleware": "^5.0.1",
"restify-jwt": "^0.4.0",
"typescript": "^3.9.5"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-export-namespace-from": "^7.10.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-export-default-from": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@plasma-platform/tm-message-hook": "^2.0.14",
"babel-eslint": "^10.1.0",
"documentation": "^13.0.1",
"eslint": "^7.3.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-jsx-a11y": "^6.3.0",
"eslint-plugin-react": "^7.20.0",
"lint-staged": "^10.2.11",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5"
},
"scripts": {
"lint": "npm run format && npm-run-all lint:*",
"lint:js": "eslint --ext .js --color -f stylish --fix ./source/**/*",
"format": "prettier --write --single-quote --print-width 100 --trailing-comma all 'source/**/*.{js,jsx}'",
"precommit": "git add . -A && lint-staged",
"commitmsg": "commit-msg ${GIT_PARAMS}",
"start": "node ./build/server.js",
"build": "babel source --minified -s true -d build --ignore __tests__/**,__mocks__/**",
"watch": "babel source --watch --minified -s true -d build --ignore __tests__/**,__mocks__/**",
"docker:build": "docker build ./ -t frontendermagazine/article --label frontendermagazine",
"docker:publish": "docker push frontendermagazine/article"
},
"lint-staged": {
"*.{js}": [
"npm run format",
"eslint --color -f stylish --fix",
"git add"
]
},
"jest": {
"modulePaths": [
"source/"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/source/__mocks__/fileMock.js",
"\\.(css|less|pcss)$": "<rootDir>/source/__mocks__/styleMock.js"
},
"coverageReporters": [
"clover",
"json",
"text",
"html"
]
}
}