-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.64 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.64 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "it2021",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "nx serve",
"build": "ANALYZE=true nx build",
"export": "nx export",
"img": "node libs/get-image $@ && yarn map",
"map": "node libs/get-coords",
"svg": "./libs/svg.sh $@",
"test": "nx test",
"serve": "npx serve dist/apps/i2021/exported",
"postinstall": "husky install"
},
"private": true,
"dependencies": {
"@nrwl/next": "12.9.0",
"@types/react-modal": "3.12.1",
"@types/react-vertical-timeline-component": "3.0.1",
"core-js": "3.6.5",
"date-fns": "2.24.0",
"next": "11.1.2",
"react": "17.0.2",
"react-aspect-ratio": "1.0.50",
"react-dom": "17.0.2",
"react-is": "17.0.2",
"react-lazy-load-image-component": "1.5.1",
"react-map-gl": "6.1.17",
"react-modal": "3.14.3",
"react-tooltip": "4.2.21",
"react-vertical-timeline-component": "3.3.3",
"react-youtube": "7.13.1",
"regenerator-runtime": "0.13.7",
"styled-components": "5.2.1",
"tslib": "2.0.0",
"use-clipboard-copy": "0.2.0"
},
"devDependencies": {
"@next/bundle-analyzer": "12.0.3",
"@nrwl/cli": "12.9.0",
"@nrwl/eslint-plugin-nx": "12.9.0",
"@nrwl/jest": "12.9.0",
"@nrwl/linter": "12.9.0",
"@nrwl/react": "12.9.0",
"@nrwl/tao": "12.9.0",
"@nrwl/web": "12.9.0",
"@nrwl/workspace": "12.9.0",
"@testing-library/react": "11.2.6",
"@testing-library/react-hooks": "7.0.1",
"@types/jest": "26.0.24",
"@types/node": "14.14.33",
"@types/react": "17.0.3",
"@types/react-dom": "17.0.3",
"@types/react-is": "17.0.0",
"@types/styled-components": "5.1.9",
"@typescript-eslint/eslint-plugin": "4.28.3",
"@typescript-eslint/parser": "4.28.3",
"all-the-cities": "3.1.0",
"axios": "0.21.4",
"babel-jest": "27.0.6",
"babel-plugin-styled-components": "1.10.7",
"colors": "1.4.0",
"enquirer": "2.3.6",
"eslint": "7.22.0",
"eslint-config-next": "11.1.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.23.1",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "7.0.4",
"image-downloader": "4.0.3",
"image-size": "1.0.0",
"jest": "27.0.3",
"lint-staged": "11.2.6",
"npm-run-all": "4.1.5",
"prettier": "2.4.1",
"sharp": "0.29.2",
"svg-sprite-generator": "0.0.7",
"svgo": "2.8.0",
"ts-jest": "27.0.7",
"typescript": "4.4.4",
"webp-converter": "2.3.3",
"webpack-bundle-analyzer": "4.5.0"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}