forked from frontend-park-mail-ru/2021_2_MonKeys
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.96 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.96 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
{
"name": "monkeys_drip",
"version": "0.2.0",
"description": "Tinder clone from VK junior team MonKeys",
"main": "app.js",
"scripts": {
"build": "python scripts/build.py",
"eslint": "eslint --max-warnings=0 source/**/*.{ts,tsx}",
"prettier": "prettier --write \"source/**/*.+(js|jsx|ts|tsx|json)\"",
"prettier-check": "prettier --check \"source/**/*.+(js|jsx|ts|tsx|json)\"",
"prettier-scss": "prettier --check --tab-width 2 \"scss/**/*.+(scss)\"",
"deploy": "bash scripts/docker-nginx-ssl.sh",
"rollup": "npx rollup --config rollup.config.js --configPlugin typescript"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frontend-park-mail-ru/2021_2_MonKeys.git"
},
"author": "https://github.com/orgs/Mon-Keys/teams/monkeys",
"license": "ISC",
"bugs": {
"url": "https://github.com/frontend-park-mail-ru/2021_2_MonKeys/issues"
},
"homepage": "https://github.com/frontend-park-mail-ru/2021_2_MonKeys#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"autoprefixer": "^10.4.0",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"eslint-config-standard": "^16.0.3",
"eslint-formatter-badger": "^0.10.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"postcss": "^8.4.5",
"prettier-eslint": "^13.0.0",
"rollup": "^2.58.3",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.43.4",
"stylelint-config-standard": "^23.0.0",
"typescript": "^4.4.4"
},
"dependencies": {
"jslint": "^0.12.1",
"path": "^0.12.7",
"static-livereload": "^0.0.0",
"tslint-config-prettier": "^1.18.0"
}
}