-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.39 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
{
"name": "frontend-no-framework",
"version": "1.0.0",
"description": "바닐라 자바스크립트로 기능 구현하기",
"scripts": {
"build": "tsc",
"test": "tsc && webpack && cypress run --browser chrome"
},
"repository": {
"type": "git",
"url": "git+https://github.com/InSeong-So/Frontend-No-Framework.git"
},
"keywords": [
"Vanilla",
"JavaScript",
"TypeScript",
"NoFramework",
"바닐라",
"자바스크립트",
"타입스크립트",
"프레임워크"
],
"author": "InSeong-So",
"license": "MIT",
"bugs": {
"url": "https://github.com/InSeong-So/Frontend-No-Framework/issues"
},
"homepage": "https://github.com/InSeong-So/Frontend-No-Framework#readme",
"dependencies": {
"react": "^18.1.0",
"redux": "^4.2.0",
"immer": "^9.0.14",
"history": "^5.3.0",
"@types/history": "^4.7.11"
},
"devDependencies": {
"@cypress/code-coverage": "^3.9.12",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"cypress": "^9.6.1",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-prettier": "^4.0.0",
"jest": "28.1.0",
"jest-plugin-context": "2.9.0",
"prettier": "^2.6.2",
"reflect-metadata": "^0.1.13",
"typescript": "^4.6.4"
}
}