-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.43 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
{
"name": "dart-to-json-null-safety",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "ENV=true next dev -p 4004",
"build": "next build --profile",
"start": "next start -p 4004",
"deploy": "./deploy.sh",
"analyze": "ANALYZE=true npm run build",
"test": "jest"
},
"dependencies": {
"@emotion/cache": "^11.1.3",
"@emotion/react": "^11.1.5",
"@emotion/server": "^11.0.0",
"@emotion/styled": "^11.1.5",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"i18next": "^20.1.0",
"json-to-ast": "^2.1.0",
"next": "10.0.9",
"next-compose-plugins": "^2.2.1",
"next-transpile-modules": "^6.4.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-i18next": "^11.8.12",
"react-json-view": "^1.21.3",
"react-syntax-highlighter": "^15.4.3",
"styled-components": "^5.2.3"
},
"devDependencies": {
"@next/bundle-analyzer": "^10.1.2",
"@types/jest": "^26.0.22",
"@types/json-to-ast": "^2.1.1",
"@types/node": "^14.14.36",
"@types/react": "^17.0.3",
"@types/react-syntax-highlighter": "^13.5.0",
"@types/styled-components": "^5.1.9",
"cz-conventional-changelog": "^3.3.0",
"jest": "^26.6.3",
"sass": "^1.32.8",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}