-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
42 lines (42 loc) · 1.28 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
{
"name": "django-data-wizard",
"type": "module",
"scripts": {
"test": "npm test --workspaces",
"build": "npm run build --workspaces --if-present",
"jest": "jest --verbose",
"rollup": "rollup",
"prettier": "prettier --write .",
"lint": "eslint ."
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/eslint-parser": "^7.21.8",
"@babel/plugin-transform-react-jsx": "^7.22.3",
"@babel/preset-env": "^7.22.4",
"@babel/preset-react": "^7.22.3",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.3",
"@wq/rollup-plugin": "^2.0.0-alpha.2",
"babel-plugin-direct-import": "^1.0.0",
"eslint": "^8.42.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-react": "^7.32.2",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.8.8",
"rollup": "^3.24.0"
},
"prettier": {
"tabWidth": 4,
"singleQuote": true
},
"workspaces": [
"packages/progress",
"packages/progress-element",
"packages/wizard"
]
}