-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·74 lines (74 loc) · 2.31 KB
/
package.json
File metadata and controls
executable file
·74 lines (74 loc) · 2.31 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
{
"homepage": "https://hackioca.hackthenorth.com/",
"name": "hackioca",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts-ts start",
"lint": "npm run lint:ts && npm run lint:css",
"lint:ts": "eslint --ext .jsx,.js,.tsx,.ts src/ --fix",
"lint:css": "stylelint src",
"test": "jest --config jestconfig.json --watch",
"build": "react-scripts-ts build",
"predeploy": "npm run build && cp CNAME build/CNAME",
"deploy": "gh-pages -d build",
"eject": "react-scripts-ts eject"
},
"dependencies": {
"@bugsnag/js": "^6.0.0",
"@bugsnag/plugin-react": "^6.0.0",
"@hackthenorth/north": "^0.1.1",
"@types/react-router-dom": "^4.3.1",
"@types/react-slick": "^0.23.3",
"@types/react-tooltip": "^3.9.2",
"@types/smoothscroll-polyfill": "^0.3.1",
"popmotion": "^8.6.4",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-pose": "^4.0.8",
"react-router-dom": "^5.0.0",
"react-scripts-ts": "^4.0.8",
"react-slick": "^0.23.2",
"react-tooltip": "^3.10.0",
"slick-carousel": "^1.8.1",
"smoothscroll-polyfill": "^0.4.4",
"styled-components": "^4.1.3",
"use-query-params": "^0.3.0"
},
"devDependencies": {
"@types/enzyme": "^3.9.1",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.11",
"@types/node": "^11.11.3",
"@types/react": "^16.8.8",
"@types/react-dom": "^16.8.2",
"@types/react-test-renderer": "^16.8.1",
"@types/styled-components": "^4.1.12",
"@typescript-eslint/eslint-plugin": "^1.5.0",
"@typescript-eslint/parser": "^1.5.0",
"babel": "^6.23.0",
"babel-jest": "^24.5.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.6.0",
"gh-pages": "^3.1.0",
"prettier": "1.16.4",
"react-app-polyfill": "^0.2.2",
"react-test-renderer": "^16.8.4",
"stylelint": "^9.10.1",
"stylelint-config-recommended": "^2.1.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.5.2",
"ts-jest": "^24.0.0",
"typescript": "^3.3.3333"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}