aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 31b5cc9e8838f05d8ab741496197fba852c99f1f (plain) (blame)
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
{
  "name": "vim-vixen",
  "description": "Vim vixen",
  "scripts": {
    "schema": "ajv compile -s src/shared/settings/schema.json -o src/shared/settings/validate.js",
    "start": "webpack --mode development -w --devtool inline-source-map",
    "build": "NODE_ENV=production webpack --mode production --progress --devtool inline-source-map",
    "package": "yarn build && script/package",
    "lint": "eslint --ext .ts,.tsx .",
    "lint:fix": "eslint --ext .ts,.tsx . --fix",
    "type-checks": "tsc --noEmit",
    "test": "jest",
    "test:e2e": "jest --config e2e/jest.config.ts e2e"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ueokande/vim-vixen.git"
  },
  "author": "Shin'ya Ueoka",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/ueokande/vim-vixen/issues"
  },
  "homepage": "https://github.com/ueokande/vim-vixen",
  "devDependencies": {
    "@types/assert": "^1.4.6",
    "@types/express": "^4.17.13",
    "@types/jest": "^27.4.0",
    "@types/node": "^17.0.14",
    "@types/prop-types": "^15.7.4",
    "@types/react": "^17.0.38",
    "@types/react-dom": "^17.0.11",
    "@types/react-redux": "^7.1.7",
    "@types/react-test-renderer": "^17.0.0",
    "@types/redux-promise": "^0.5.28",
    "@types/selenium-webdriver": "^4.0.16",
    "@types/styled-components": "^5.1.11",
    "@typescript-eslint/eslint-plugin": "3.9.0",
    "@typescript-eslint/parser": "3.10.1",
    "ajv": "^8.9.0",
    "ajv-cli": "^5.0.0",
    "css-loader": "^5.2.6",
    "eslint": "7.32.0",
    "eslint-config-prettier": "8.3.0",
    "eslint-plugin-prettier": "3.4.0",
    "eslint-plugin-react": "7.26.1",
    "eslint-plugin-standard": "^5.0.0",
    "express": "^4.17.1",
    "html-webpack-plugin": "4.5.2",
    "jest": "^27.2.2",
    "jsonwebtoken": "^8.5.1",
    "jszip": "^3.7.0",
    "lanthan": "0.0.2",
    "prettier": "2.5.1",
    "prettier-eslint": "13.0.0",
    "react": "17.0.2",
    "react-dom": "17.0.2",
    "react-redux": "^7.2.6",
    "react-test-renderer": "17.0.2",
    "redux": "^4.0.5",
    "redux-promise": "^0.6.0",
    "reflect-metadata": "^0.1.13",
    "request-promise-native": "^1.0.8",
    "style-loader": "^2.0.0",
    "styled-components": "^5.3.0",
    "ts-jest": "^27.1.3",
    "ts-loader": "^9.2.6",
    "ts-node": "^10.4.0",
    "tsyringe": "4.5.0",
    "typescript": "4.3.5",
    "web-ext-types": "^3.2.1",
    "webpack": "5.67.0",
    "webpack-cli": "4.9.2"
  }
}