-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.4 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": "sustainability-calculator",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "webpack --env development --watch --config webpack.dev.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"start": "webpack-dev-server",
"build": "webpack --config webpack.prod.js",
"test": "DOTENV_CONFIG_PATH=.env.test jest --setupFiles=dotenv/config --config jest.config.js --ci",
"test-watch": "DOTENV_CONFIG_PATH=.env.test jest --setupFiles=dotenv/config --config jest.config.js --verbose --watch"
},
"engines": {
"npm": ">=9.6.7",
"node": "18.x"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@headlessui/react": "^1.7.15",
"@heroicons/react": "^2.0.18",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.10.1",
"react-intl": "^6.4.3",
"react-tooltip": "^5.18.0",
"typescript": "^5.1.3"
},
"devDependencies": {
"@babel/cli": "^7.15.0",
"@babel/core": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@headlessui/tailwindcss": "^0.1.3",
"@jest/globals": "^27.4.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/chrome": "^0.0.228",
"@types/jest": "^27.4.0",
"@types/node": "^20.2.5",
"@types/react": "^18.2.8",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.11.0",
"autoprefixer": "^10.4.14",
"babel-jest": "^29.5.0",
"babel-loader": "^8.2.2",
"babel-plugin-lodash": "^3.3.4",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.8.1",
"dotenv": "^16.3.1",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.4.0",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"jest-transformer-svg": "^2.0.1",
"postcss": "^8.4.26",
"postcss-loader": "^7.3.3",
"postcss-preset-env": "^9.0.0",
"prettier": "2.8.8",
"style-loader": "^3.3.3",
"tailwindcss": "^3.3.3",
"ts-jest": "^29.1.0",
"ts-loader": "^9.2.6",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.15.0",
"webpack-merge": "^5.8.0"
}
}