-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.68 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
{
"name": "web",
"version": "1.0.0",
"description": "Codium Web app",
"main": "index.js",
"engines": {
"node": ">18.x"
},
"scripts": {
"i18n:extract": "NODE_ENV=production node build/extract-i18n.mjs",
"start": "NODE_ENV=development node server.mjs",
"build": "node build/build.mjs",
"lint-staged": "lint-staged",
"lint": "eslint **/*.{js,ts}",
"cypress:run": "cypress run",
"cypress:open": "cypress open",
"preview": "vite preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodiumTeam/web.git"
},
"keywords": [],
"author": "Codium Team <info@codium.team>",
"license": "ISC",
"bugs": {
"url": "https://github.com/CodiumTeam/web/issues"
},
"homepage": "https://github.com/CodiumTeam/web#readme",
"devDependencies": {
"@babel/preset-react": "7.18.6",
"@testing-library/cypress": "^9.0.0",
"@vitejs/plugin-react": "3.1.0",
"cypress": "12.6.0",
"ejs": "^3.1.10",
"eslint": "8.34.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"express": "^4.21.1",
"glob": "^8.1.0",
"html-entities": "^2.5.2",
"i18n": "^0.15.1",
"jsdom": "^25.0.1",
"lint-staged": "13.1.2",
"prettier": "2.8.4",
"sass": "1.58.3",
"vite": "4.1.4",
"vite-plugin-ejs-engine": "^2.0.0"
},
"dependencies": {
"@babel/eslint-parser": "7.19.1",
"@emailjs/browser": "^3.11.0",
"@glidejs/glide": "3.6.0",
"@stackblitz/sdk": "1.8.2",
"isinview": "2.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-modal": "3.16.1",
"react-toastify": "9.1.1"
}
}