-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.63 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
{
"name": "Noalte",
"version": "0.3.0",
"author": "Soichi Masuda <masuP9@gmail> (https://github.com/masuP9/)",
"license": "MIT",
"bugs": "https://github.com/masuP9/noalte/issues",
"devDependencies": {
"@types/node": "14.14.37",
"@types/react": "17.0.3",
"@types/react-dom": "17.0.3",
"@types/styled-components": "5.1.9",
"@typescript-eslint/eslint-plugin": "4.20.0",
"@typescript-eslint/parser": "4.20.0",
"babel-cli": "6.26.0",
"babel-preset-react-app": "10.0.0",
"copy-webpack-plugin": "8.1.0",
"eslint": "7.23.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.23.1",
"eslint-plugin-react-hooks": "4.2.0",
"prettier": "2.2.1",
"source-map-loader": "2.0.1",
"ts-loader": "8.1.0",
"typescript": "4.2.3",
"webpack": "5.30.0",
"webpack-cli": "4.6.0"
},
"dependencies": {
"crx-hotreload": "1.0.6",
"react": "17.0.2",
"react-dom": "17.0.2",
"styled-components": "5.2.3"
},
"scripts": {
"build:dev": "webpack --mode development",
"build:prod": "webpack --mode production",
"prod": "yarn build:prod && zip -r Noalte.zip publish",
"dev": "yarn build:dev -w",
"lint": "yarn lint:eslint && yarn lint:prettier",
"lint:eslint": "eslint \"src/**/*.+(ts|tsx)\"",
"lint:prettier": "prettier --check 'src/**/*.+(ts|tsx|js)'",
"format:eslint": "yarn lint --fix",
"format:prettier": "prettier --write 'src/**/*.+(ts|tsx|js)'",
"typecheck": "tsc -p . --noEmit"
},
"resolutions": {
"@types/react": "17.0.3",
"@types/react-dom": "17.0.3",
"kind-of": "^6.0.3"
}
}