-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 1.32 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
{
"name": "django-comments-ink",
"private": true,
"version": "0.3.0",
"description": "Test the frontend modules of django-comments-ink",
"scripts": {
"pretest": "eslint django_comments_ink/static/django_comments_ink",
"watch": "NODE_ENV=development npx webpack --watch",
"build:dev": "NODE_ENV=development npx webpack",
"build": "NODE_ENV=production npx webpack",
"test": "NODE_ENV=test jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/comments-ink/django-comments-ink.git"
},
"keywords": [],
"author": "Daniela Rus Morales",
"license": "BSD-2-CLAUSE",
"bugs": {
"url": "https://github.com/danirus/django-comments-ink/issues"
},
"homepage": "https://github.com/danirus/django-comments-ink",
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.16.10",
"@testing-library/dom": "^8.11.3",
"@testing-library/jest-dom": "^5.16.1",
"babel-jest": "^27.4.6",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"eslint": "^7.32.0",
"express": "^4.17.2",
"fake-fetch": "^2.3.0",
"jest": "^27.4.7",
"jest-dev-server": "^6.0.3",
"jest-fetch-mock": "^3.0.3",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@babel/preset-env": "^7.16.11",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0"
}
}