This repository was archived by the owner on Jun 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.07 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.07 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "module-usbstick",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/register": "^7.4.4",
"@types/express": "^4.16.1",
"@types/fs-extra": "^7.0.0",
"@types/node": "^12.0.0",
"@types/sqlite3": "^3.1.5",
"@types/supertest": "^2.0.7",
"express": "^4.16.4",
"husky": "^2.3.0",
"lint-staged": "^8.1.7",
"prettier": "^1.17.1",
"stylelint": "^10.0.1",
"stylelint-config-palantir": "^4.0.0",
"stylelint-config-prettier": "^5.2.0",
"ts-node": "^8.1.0",
"typescript": "^3.4.5",
"wait-for-expect": "^1.2.0"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"start": "ts-node ./src/index.ts",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "tsc --noEmit && eslint '*/**/*.{js,jsx,ts,tsx}' --quiet && yarn stylelint:run",
"format": "prettier '**/*.+(css|graphql|json|less|md|mdx|sass|scss|yaml|yml)' --write"
},
"husky": {
"hooks": {
"pre-commit": "tsc && lint-staged"
}
},
"lint-staged": {
"linters": {
"*.+(js|jsx|ts|tsx)": [
"stylelint",
"eslint --quiet --fix",
"git add"
],
"*.css": [
"stylelint --config .stylelintrc-css.js --fix",
"git add"
],
"*.+(css|graphql|json|less|md|mdx|sass|scss|yaml|yml)": [
"prettier --write",
"git add"
]
}
},
"eslintConfig": {
"extends": "react-app"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-cypress": "^2.2.1",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"jest": "^24.8.0",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2"
}
}