-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
78 lines (78 loc) · 2.45 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
73
74
75
76
77
78
{
"name": "cbdc",
"version": "1.0.0",
"private": true,
"dependencies": {
"@daml.js/banking-1.0.0": "file:./daml.js/banking-1.0.0",
"@daml.js/certificates-1.0.0": "file:./daml.js/certificates-1.0.0",
"@daml.js/demoadmin-1.0.0": "file:./daml.js/demoadmin-1.0.0",
"@daml.js/finance-1.0.0": "file:./daml.js/finance-1.0.0",
"@daml.js/landlord-1.0.0": "file:./daml.js/landlord-1.0.0",
"@daml.js/lib-1.0.0": "file:./daml.js/lib-1.0.0",
"@daml.js/reset-1.0.0": "file:./daml.js/reset-1.0.0",
"@daml/ledger": "^2.3.2",
"@daml/react": "^2.3.2",
"@daml/types": "^2.3.2",
"@types/node": "^14.17.21",
"@types/puppeteer": "^5.4.4",
"@types/react-router-dom": "^5.3.1",
"@types/wait-on": "^5.2.0",
"dotenv": "^8.2.0",
"jwt-simple": "^0.5.6",
"lodash": "^4.17.20",
"puppeteer": "^8.0.0",
"react": "^16.14.0",
"react-dom": "^16.12.0",
"react-elastic-carousel": "^0.9.4",
"react-number-format": "^4.7.3",
"react-router-dom": "^5.3.0",
"react-router-transition": "^2.0.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.88.1",
"styled-components": "^5.3.1",
"wait-on": "^5.3.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --testURL='http://localhost:7575'",
"eject": "react-scripts eject",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src/"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/jest": "^26.0.22",
"@types/jwt-simple": "^0.5.33",
"@types/lodash": "^4.14.175",
"@types/react": "^16.14.16",
"@types/react-dom": "^16.9.14",
"http-proxy-middleware": "^1.0.4",
"prettier": "2.3.0",
"react-scripts": "^4.0.3",
"typescript": "~3.8.3"
},
"jest": {
"transformIgnorePatterns": [
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$",
"node_modules/(?!(react-native|react-dom|react-elastic-carousel|react-number-format|react-router-dom|react-router-transition)/)"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js"
}
}
}