forked from unitystation/unitystation-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.53 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.53 KB
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
{
"name": "unitystation.org",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"cypress": "cypress open",
"cypress:headless:e2e": "cypress run --spec \"cypress/e2e/**/*.cy.ts\"",
"cypress:headless:unit": "cypress run --spec \"cypress/component/*.cy.ts\"",
"test:e2e": "start-server-and-test dev 3000 cypress:headless:e2e",
"test:unit": "start-server-and-test dev 3000 cypress:headless:unit "
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@types/ua-parser-js": "^0.7.36",
"flowbite": "^1.5.3",
"flowbite-react": "^0.1.11",
"next": "12.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"ua-parser-js": "^1.0.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/node": "18.7.15",
"@types/react": "18.0.18",
"@types/react-dom": "18.0.6",
"autoprefixer": "^10.4.8",
"cypress": "^10.8.0",
"eslint": "8.23.0",
"eslint-config-next": "13.1.1",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"postcss": "^8.4.16",
"start-server-and-test": "^1.14.0",
"tailwindcss": "^3.1.8",
"typescript": "4.8.2"
}
}