-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
78 lines (78 loc) · 2.45 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
{
"name": "cot-perspective",
"version": "1.0.0",
"main": "src/index.tsx",
"repository": "https://github.com/hd-o/cotperspective.git",
"author": "Hadrian de Oliveira",
"license": "MIT",
"scripts": {
"dev": "concurrently yarn:dev:build yarn:start",
"dev:build": "ts-node-dev --respawn src/index.tsx",
"build": "ts-node src/index.tsx",
"lint": "concurrently yarn:run:tsc yarn:run:eslint",
"postinstall": "husky install",
"git:prepush": "concurrently yarn:lint yarn:test",
"run:eslint": "eslint -c .eslintrc.yml .",
"run:jest": "DEBUG_PRINT_LIMIT=0 jest",
"run:tsc": "tsc --noEmit -p ./tsconfig.json",
"start": "serve build",
"test": "DEBUG_PRINT_LIMIT=0 jest"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@types/clean-css": "^4.2.5",
"@types/enzyme": "^3.10.11",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^27.4.1",
"@types/jsdom": "^16.2.14",
"@types/lodash": "^4.14.179",
"@types/node": "^17.0.21",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.13",
"@types/react-test-renderer": "^17.0.1",
"@types/request": "^2.48.8",
"@types/unzipper": "^0.10.5",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"clean-css": "^5.2.4",
"concurrently": "^7.3.0",
"csv-parse": "^5.0.4",
"enzyme-to-json": "^3.6.2",
"eslint": "^8.10.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.29.2",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"inversify": "^6.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^19.0.0",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"serve": "^14.0.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.6.0",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3",
"unzipper": "^0.10.11"
},
"keywords": [],
"description": "",
"packageManager": "[email protected]"
}