-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.38 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.38 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
{
"name": "impfmon",
"version": "1.0.0",
"description": "impfmon",
"main": "index.js",
"scripts": {
"watch": "webpack --config webpack/webpack.dev.js --mode development --watch --progress",
"build": "webpack --config webpack/webpack.prod.js",
"clean": "rimraf dist",
"test": "npx jest",
"style": "prettier --write \"src/**/*.{ts,tsx}\""
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TimBeyer/impfmon.git"
},
"dependencies": {
"classnames": "^2.3.1",
"luxon": "^1.26.0",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@tailwindcss/forms": "^0.3.2",
"@types/chrome": "0.0.100",
"@types/jest": "^25.1.4",
"@types/jquery": "^3.3.33",
"@types/luxon": "^1.26.5",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"autoprefixer": "^10.2.5",
"copy-webpack-plugin": "^6.1.0",
"css-loader": "^5.2.4",
"glob": "^7.1.6",
"jest": "^26.6.3",
"nan": "^2.14.2",
"postcss": "^8.2.15",
"postcss-import": "^14.0.2",
"postcss-loader": "^5.2.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2 ",
"style-loader": "^2.0.0",
"tailwindcss": "^2.1.2",
"ts-jest": "^25.2.1 ",
"ts-loader": "^6.2.1",
"typescript": "^4.2.4",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0",
"webpack-merge": "~4.2.2"
}
}