-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.08 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.08 KB
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
{
"name": "clientjs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.dev.js",
"start": "webpack --config webpack.dev.js --watch",
"dist": "webpack --config webpack.prod.js",
"test": "jest unit.",
"integrationtests": "jest integration."
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/xrm": "^9.0.39",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"jest": "^29.7.0",
"prettier": "2.2.1",
"ts-jest": "^29.2.4",
"ts-loader": "^9.1.2",
"typescript": "^4.2.4",
"webpack": "^5.36.2",
"webpack-cli": "^4.7.0",
"webpack-merge": "^5.7.3",
"xrm-mock": "^3.5.1"
},
"dependencies": {
"dataverse-auth": "^2.0.7",
"dataverse-gen": "^2.0.15",
"dataverse-ify": "^2.0.7",
"moment": "^2.29.1",
"xrm-webapi": "latest"
}
}