-
Notifications
You must be signed in to change notification settings - Fork 99
/
package.json
72 lines (72 loc) · 2.13 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
69
70
71
72
{
"name": "django-nested-admin",
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-transform-runtime": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/register": "^7.16.5",
"babel-loader": "^8.2.3",
"babel-plugin-istanbul": "^6.1.1",
"babel-plugin-module-resolver": "^4.1.0",
"codecov": "^3.8.3",
"core-js": "^2.6.12",
"css-loader": "^6.5.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.2.1",
"mini-css-extract-plugin": "^2.4.5",
"node-sass": "^7.0.0",
"nyc": "^15.1.0",
"pixelmatch": "^5.2.1",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^7.0.2",
"postcss-scss": "^4.0.5",
"prettier": "^2.7.1",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"stylelint": "^14.13.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended-scss": "^7.0.0",
"stylelint-prettier": "^2.0.0",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-merge": "^5.8.0"
},
"scripts": {
"report": "nyc report -r lcovonly",
"build": "webpack",
"codecov": "codecov -f coverage/lcov.info -F javascript",
"lint": "npm run lint:stylelint; npm run lint:eslint",
"lint:fix": "npm run lint:stylelint -- --fix; npm run lint:eslint -- --fix",
"lint:stylelint": "node_modules/.bin/stylelint 'nested_admin/**/*.scss'",
"lint:eslint": "node_modules/.bin/eslint nested_admin/static/nested_admin/src --ext .js"
},
"engines": {
"node": ">=14"
},
"main": "nested_admin/static/nested_admin/src/nested_admin",
"repository": {
"type": "git",
"url": "https://github.com/theatlantic/django-nested-admin"
},
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/theatlantic/django-nested-admin/issues"
},
"nyc": {
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
},
"browserslist": [
"last 2 versions",
"safari >= 7",
"ie 9"
]
}