-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 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
{
"name": "calc-training",
"version": "1.0.0",
"scripts": {
"build": "vite build",
"dev": "vite",
"prepare": "husky install",
"serve": "vite preview",
"lint": "eslint --ignore-path .gitignore . --ext .js,.jsx",
"test": "npm run lint && jest -i",
"test:watch": "jest --watchAll"
},
"dependencies": {
"firebase": "8.3.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-drawarea": "1.1.2",
"wouter": "2.7.4"
},
"devDependencies": {
"@babel/core": "7.13.15",
"@babel/preset-env": "7.13.15",
"@vitejs/plugin-react-refresh": "1.3.2",
"babel-jest": "26.6.3",
"babel-plugin-inline-dotenv": "1.6.0",
"babel-plugin-module-resolver": "4.1.0",
"babel-plugin-transform-vite-meta-env": "1.0.2",
"eslint": "7.23.0",
"eslint-config-standard": "16.0.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.3.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-react": "7.23.1",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "6.0.0",
"jest": "26.6.3",
"postcss-preset-env": "6.7.0",
"prop-types": "15.7.2",
"vite": "2.1.5"
}
}