-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 926 Bytes
/
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
{
"name": "tinkoff_fintech_frontend",
"version": "1.0.0",
"description": "Homeworks for frontend part of tinkoff fintech school",
"main": "index.js",
"scripts": {
"test": "npm run unit-tests && npm run lint && npm run lint-css && npm run lint-html",
"lint": "eslint */*.js",
"lint-css": "stylelint *.less",
"unit-tests": "mocha --reporter=spec */test.js"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"author": "",
"license": "ISC",
"dependencies": {
"eslint": "^4.6.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.3.0",
"expect.js": "^0.3.1",
"mocha": "^3.5.0"
},
"devDependencies": {
"babel-eslint": "^8.0.1",
"html-validator": "^2.2.3",
"husky": "^1.1.0",
"stylelint": "^8.2.0",
"stylelint-config-standard": "^17.0.0"
}
}