-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.73 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
{
"private": true,
"name": "vk-notifications",
"description": "Adds notifications about new post in groups.",
"resolutions": {
"lodash": "4.17.21"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"autolinker": "^3.11.1",
"date-fns": "^2.21.3",
"lodash": "^4.17.21",
"modern-normalize": "^1.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.2.2",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"css-loader": "^6.3.0",
"file-loader": "^6.2.0",
"jest": "^27.2.4",
"mini-css-extract-plugin": "^2.3.0",
"postcss": "^8.4.31",
"postcss-loader": "^6.1.1",
"style-loader": "^3.3.0",
"url-loader": "^4.1.1",
"webpack": "^5.76.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.0"
},
"repository": {
"type": "git",
"url": "git://github.com/jastkand/vk-notifications.git"
},
"author": "Andrey Krivko <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jastkand/vk-notifications/issues"
},
"homepage": "https://github.com/jastkand/vk-notifications",
"scripts": {
"clean": "rm -rf public/app/*",
"prebuild": "npm run clean -s",
"build": "NODE_ENV=production webpack --mode=production && rm public/**/*.map",
"dev": "NODE_ENV=development webpack --watch --mode=development",
"analyze": "BUNDLE_ANALYZE=1 NODE_ENV=production webpack --mode=production",
"test": "jest"
}
}