forked from wtetsu/mouse-dictionary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.54 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
{
"name": "mouse-dictionary",
"version": "1.4.6",
"repository": "https://github.com/wtetsu/mouse-dictionary.git",
"author": "wtetsu",
"license": "MIT",
"scripts": {
"build": "npm run build-chrome && npm run build-firefox",
"watch": "webpack -w --config webpack.config.chrome.js",
"release": "npm run release-chrome && npm run release-firefox",
"package": "npm run package-chrome && npm run package-firefox",
"lint": "eslint src/**/*.{js,ts,tsx} && prettier --check src/**/*.{js,ts,tsx}",
"format": "prettier --write src/**/*.{js,ts,tsx}",
"test": "jest",
"test-watch": "jest --watch",
"test-cov": "npm test -- --coverage",
"build-chrome": "webpack --config webpack.config.chrome.js",
"watch-chrome": "webpack -w --config webpack.config.chrome.js",
"release-chrome": "cross-env NODE_ENV=production npm run build-chrome",
"release-chrome-beta": "cross-env NODE_ENV=production npm run build-chrome-beta",
"package-chrome": "npm run release-chrome && node build_tools/archive.js chrome",
"build-firefox": "webpack --config webpack.config.firefox.js",
"watch-firefox": "webpack -w --config webpack.config.firefox.js",
"release-firefox": "cross-env NODE_ENV=production npm run build-firefox",
"package-firefox": "npm run release-firefox && node build_tools/archive.js firefox"
},
"dependencies": {
"deinja": "0.0.3",
"hogan.js": "^3.0.2",
"immer": "^7.0.8",
"react": "^16.13.1",
"react-ace": "^9.1.3",
"react-color": "^2.18.1",
"react-dom": "^16.13.1",
"sweetalert": "^2.1.2",
"uniqlist": "^1.0.4"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/chrome": "0.0.122",
"@types/hogan.js": "^3.0.0",
"@types/jest": "^26.0.10",
"@types/react": "^16.9.48",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"archiver": "^5.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^6.0.4",
"cross-env": "^7.0.2",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"jest": "^26.4.2",
"milligram": "^1.4.1",
"prettier": "^2.1.1",
"typescript": "^4.0.2",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
}
}