-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.12 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
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
{
"name": "gitsearch-webclient",
"version": "0.0.1",
"license": "GPL-3.0-or-later",
"main": "src/index.tsx",
"scripts": {
"develop": "concurrently -r \"npm:type-check:watch\" \"npm:start\"",
"start": "node start.js",
"build": "npm run type-check && parcel build ./src/index.html --public-url '/' --no-source-maps",
"clean": "rm -rf dist .cache",
"prettify": "prettier --write './src/**/*.{ts,tsx}'",
"test": "jest",
"test:watch": "jest --watch",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch"
},
"engines": {
"node": ">= 8.11.0",
"npm": ">= 6.0.0"
},
"jest": {
"preset": "ts-jest",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"setupFilesAfterEnv": [
"<rootDir>/src/setupTests.ts"
],
"moduleNameMapper": {
".+\\.css$": "<rootDir>/src/styleMock.ts"
},
"testMatch": [
"**/__tests__/*.(test|spec).(ts|tsx|js)"
]
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"axios": "^0.21.2",
"babel-plugin-transform-runtime": "^6.23.0",
"bootstrap-scss": "4.4.1",
"highlight.js": "^10.0.0",
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0",
"react-highlight": "^0.12.0",
"react-router-dom": "^5.1.2"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@types/highlight.js": "^9.12.3",
"@types/jest": "^24.0.11",
"@types/node": "^11.13.6",
"@types/react": "^16.8.14",
"@types/react-dom": "^16.8.4",
"@types/react-highlight": "^0.12.2",
"@types/react-router-dom": "^5.1.4",
"concurrently": "^4.1.0",
"express": "^4.17.1",
"http-proxy-middleware": "^1.0.3",
"jest": "^24.7.1",
"jest-dom": "^3.1.3",
"jest-extended": "^0.11.1",
"parcel-bundler": "^1.12.4",
"prettier": "^1.17.0",
"react-test-renderer": "^16.8.6",
"react-testing-library": "^6.1.2",
"sass": "^1.26.3",
"ts-jest": "^24.0.2",
"typescript": "^3.8.3"
}
}