-
Notifications
You must be signed in to change notification settings - Fork 157
/
package.json
45 lines (45 loc) · 1.84 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
{
"name": "django-comments-xtd-plugins",
"version": "2.10.0",
"description": "Provides django-comments-xtd reactjs plugin",
"main": "app.js",
"scripts": {
"lint": "eslint --cache --cache-location .cache/.eslintcache --report-unused-disable-directives --ext .jsx django_comments_xtd/static/django_comments_xtd/js/src/",
"compile": "rollup --config rollup.config.js --sourcemap",
"minify": "terser --compress passes=2 --mangle --comments \"/^!/\" --output django_comments_xtd/static/django_comments_xtd/js/django-comments-xtd-${npm_package_version}.min.js django_comments_xtd/static/django_comments_xtd/js/django-comments-xtd-${npm_package_version}.js",
"test": "NODE_ENV=test jest",
"watch": "nodemon --watch js/src/ --ext js --exec \"npm-run-all lint compile\""
},
"keywords": [],
"author": "Daniela Rus Morales",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.20.12",
"@babel/plugin-syntax-jsx": "^7.22.5",
"@babel/plugin-transform-modules-commonjs": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@babel/register": "^7.22.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"babel-jest": "^29.5.0",
"babel-loader": "^9.1.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"eslint": "^8.42.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-unicorn": "^47.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"nodemon": "^2.0.22",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rollup": "^3.25.1",
"rollup-jest": "^3.1.0"
}
}