-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.81 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
{
"name": "service.frontender.info",
"version": "1.0.0",
"private": false,
"description": "Services for Frontender Magazine",
"author": "Anton Nemtsev",
"contributors": [
{
"name": "Anton Nemtsev",
"email": "thesilentimp@gmail.com"
}
],
"license": "CC-BY-4.0",
"main": "build/server.js",
"scripts": {
"lint": "npm run format && npm-run-all lint:*",
"lint:js": "eslint --ext .js --color -f stylish --fix ./source/**/*",
"lint:doc": "documentation lint source/**/*.js*",
"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__/**"
},
"repository": {
"type": "git",
"url": "https://github.com/FrontenderMagazineDevelopment/service.frontender.info.git"
},
"dependencies": {
"@plasma-platform/tm-message-hook": "^1.0.3",
"ajv": "^5.3.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-0": "^6.24.1",
"build": "^0.1.4",
"crypto": "^1.0.1",
"dotenv": "^4.0.0",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-config-prettier": "^2.7.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.2.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"file-exists": "^5.0.0",
"fs": "0.0.2",
"is-url": "^1.2.2",
"isomorphic-fetch": "^2.2.1",
"joi": "^13.0.1",
"lint-staged": "^4.2.3",
"mongodb": "^2.2.31",
"mongoose": "^4.13.0",
"node-fetch": "^1.7.3",
"npm-run-all": "^4.1.2",
"oauth-1.0a": "^2.2.2",
"ping": "^0.2.2",
"prettier": "^1.8.1",
"restify": "^6.3.1",
"restify-cookies": "^0.2.2",
"restify-joi-middleware": "^3.0.0",
"restify-jwt": "^0.4.0",
"restify-mongoose": "^2.0.1",
"restify-paginate": "0.0.4",
"transliteration": "^1.2.2",
"translitit-cyrillic-russian-to-latin": "^0.1.1",
"url-exists": "^1.0.3"
},
"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"
]
}
}