-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.58 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
{
"name": "learn-avesta",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "rimraf dist && npm run lint && tsc && vite build",
"preview": "vite preview",
"lint-fix": "npm run lint -- --fix",
"lint": "eslint . --ext .js,.ts,.tsx, --format visualstudio --no-color --max-warnings 10 --report-unused-disable-directives",
"tsc-init": "tsc --init",
"tsc": "tsc --listEmittedFiles",
"netlify-dev": "ntl dev",
"start": "npm run dev",
"auto-commit-skip-netlify": "ts-node src/tools/common/git/auto-commit-skip-netlify.ts",
"jest-init": "jest --init",
"test": "jest"
},
"dependencies": {
"@netlify/functions": "0.10.0",
"bootstrap": "5.1.3",
"bootstrap-icons": "1.7.2",
"perfect-freehand": "1.0.16",
"prop-types": "15.8.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-ga": "3.3.0",
"react-player": "2.9.0"
},
"devDependencies": {
"@types/debug": "4.1.7",
"@types/jest": "27.4.0",
"@types/node": "17.0.4",
"@types/react": "17.0.33",
"@types/react-dom": "17.0.10",
"@typescript-eslint/eslint-plugin": "5.8.0",
"@typescript-eslint/parser": "5.8.0",
"@vitejs/plugin-react": "1.0.7",
"eslint": "8.5.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react-hooks": "4.3.0",
"jest": "27.4.7",
"netlify-cli": "9.6.5",
"prettier": "2.5.1",
"rimraf": "3.0.2",
"simple-git": "2.48.0",
"ts-jest": "27.1.3",
"ts-node": "10.4.0",
"typescript": "4.4.4",
"vite": "2.7.2"
}
}