-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (35 loc) · 1.05 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
{
"author": "{{authors}}",
"name": "{{project-name}}",
"version": "0.1.0",
"scripts": {
"lint": "eslint --ext .tsx,.ts,.js js/",
"format": "prettier --write 'js/**/*.{ts,tsx}'",
"format-check": "prettier --check 'js/**/*.{ts,tsx}'",
"build": "webpack",
"start": "webpack-dev-server -d"
},
"devDependencies": {
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.2",
"@wasm-tool/wasm-pack-plugin": "^1.1.0",
"html-webpack-plugin": "^3.2.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"typescript": "^3.7.5",
"ts-loader": "^6.2.1",
"prettier": "^1.19.1",
"eslint": "^6.8.0",
"eslint-loader": "^3.0.3",
"eslint-config-prettier": "^6.10.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-webassembly": "^1.8.5",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5"
}
}