-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
79 lines (79 loc) · 1.98 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "testswitch-frontend-admin",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next -p 3001",
"build": "next build",
"start": "next start -p $PORT",
"test": "jest",
"lint": "eslint . --ext .ts,.tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/techswitch-learners/testswitch-frontend-admin.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/techswitch-learners/testswitch-frontend-admin/issues"
},
"homepage": "https://github.com/techswitch-learners/testswitch-frontend-admin#readme",
"jest": {
"preset": "ts-jest",
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.jest.json"
}
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"setupFilesAfterEnv": [
"<rootDir>/_test_/setupTests.ts"
],
"moduleNameMapper": {
"^.+\\.(css|less|scss)$": "babel-jest"
}
},
"dependencies": {
"@monaco-editor/react": "^3.3.0",
"@zeit/next-sass": "^1.0.1",
"cookie": "^0.4.1",
"monaco-editor": "^0.20.0",
"next": "^9.3.5",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.2",
"@types/cookie": "^0.3.3",
"@types/jest": "^25.2.1",
"@types/node": "^13.11.1",
"@types/node-fetch": "^2.5.7",
"@types/react": "^16.9.34",
"@types/testing-library__react": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"@zeit/next-sass": "^1.0.1",
"eslint": "^6.8.0",
"eslint-config-react": "^1.1.7",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-react": "^7.19.0",
"jest": "^25.3.0",
"node-sass": "^4.14.1",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3"
}
}