-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.17 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
{
"name": "@dhis2/app-runtime-adapter-d2",
"version": "1.1.0",
"description": "",
"license": "BSD-3-Clause",
"main": "build/cjs/lib.js",
"module": "build/es/lib.js",
"private": false,
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"repository": "git@github.com:dhis2/app-runtime-adapter-d2.git",
"scripts": {
"build": "d2-app-scripts build",
"start": "d2-app-scripts start",
"test": "d2-app-scripts test",
"lint": "d2-style check js || d2-style check text",
"format": "d2-style apply js || d2-style apply text"
},
"devDependencies": {
"@dhis2/cli-app-scripts": "^3.2.2",
"@dhis2/cli-style": "^10.4.1",
"@testing-library/jest-dom": "^5.11.2",
"@testing-library/react": "^10.4.8",
"@testing-library/react-hooks": "^3.4.1",
"d2": "^31.8.1",
"mutation-observer": "^1.0.3",
"react-test-renderer": "^16.8"
},
"dependencies": {
"prop-types": "^15.7.2"
},
"peerDependencies": {
"@dhis2/app-runtime": "^2",
"d2": ">30",
"react": "^16.8",
"react-dom": "^16.8"
}
}