-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
68 lines (68 loc) · 3.35 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
{
"name": "django-email-signals",
"version": "1.0.8",
"description": "A Django application that provides functionality to create signals via the admin panel which will send emails based on some changes to some models.",
"main": "index.js",
"scripts": {
"start": "concurrently \"npm run watch:signal:change_form:ts\" \"npm run watch:signal_change_form:css\"",
"build": "npm-run-all build:signal:change_form:ts build:signal_change_form:css",
"test": "test",
"watch:signal:change_form:ts": "webpack --config ./webpack.dev.js ./email_signals/src/ts/signal_change_form.ts --output ./email_signals/static/email_signals/js/signal_change_form.min.js --watch",
"build:signal:change_form:ts": "webpack --config ./webpack.prod.js ./email_signals/src/ts/signal_change_form.ts --output ./email_signals/static/email_signals/js/signal_change_form.min.js",
"watch:signal_change_form:css": "node-sass ./email_signals/src/sass/signal_change_form.scss ./email_signals/static/email_signals/css/signal_change_form.min.css -w --output-style compressed",
"compile:signal_change_form:css": "node-sass ./email_signals/src/sass/signal_change_form.scss ./email_signals/static/email_signals/css/signal_change_form.min.css",
"prefix:signal_change_form:css": "postcss --use autoprefixer -b \"last 10 versions\" ./email_signals/static/email_signals/css/signal_change_form.min.css -o ./email_signals/static/email_signals/css/signal_change_form.min.css",
"compress:signal_change_form:css": "node-sass ./email_signals/static/email_signals/css/signal_change_form.min.css ./email_signals/static/email_signals/css/signal_change_form.min.css --output-style compressed",
"build:signal_change_form:css": "npm-run-all compile:signal_change_form:css prefix:signal_change_form:css compress:signal_change_form:css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Salaah01/django-email-signals.git"
},
"author": "Salaah Amin",
"license": "MIT",
"bugs": {
"url": "https://github.com/Salaah01/django-email-signals/issues"
},
"homepage": "https://github.com/Salaah01/django-email-signals#readme",
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.35",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"autoprefixer": "^9.7.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-preset-minify": "^0.5.1",
"babel-preset-react-app": "^9.1.2",
"clean-webpack-plugin": "^3.0.0",
"concat": "^1.0.3",
"css-loader": "^5.1.3",
"enzyme": "^3.11.0",
"eslint": "^6.8.0",
"eslint-config-react-app": "^5.2.1",
"jest": "^25.2.7",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.5",
"postcss-cli": "^8.3.1",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^4.2.0",
"prettier": "^2.2.1",
"sass-loader": "^8.0.2",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^2.3.6",
"ts-jest": "^26.5.4",
"ts-loader": "^8.0.18",
"typescript": "^4.2.3",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.11",
"webpack-merge": "^5.7.3",
"concurrently": "^6.4.0",
"node-sass": "^7.0.1"
}
}