This repository has been archived by the owner on May 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
76 lines (76 loc) · 1.95 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
{
"scripts": {
"hot": "parcel index.html",
"tsc-check": "tsc --noEmit",
"lint": "tslint -c tslint.json 'src/**/*.ts*'",
"lint-fix": "tslint --fix -c tslint.json 'src/**/*.ts*'",
"build": "parcel build --public-url=./ index.html",
"test": "jest"
},
"alias": {
"react": "inferno-compat",
"react-dom": "inferno-compat",
"inferno": "./node_modules/inferno/dist/index.dev.esm.js"
},
"jest": {
"automock": false,
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"html"
],
"transform": {
"^.+\\.ts$": "babel-jest",
"^.+\\.tsx$": "babel-jest",
"^.+\\.js$": "babel-jest",
"^.+\\.html$": "html-loader-jest"
},
"setupFiles": [
"core-js",
"./testSetup.ts"
],
"moduleNameMapper": {
"\\.png$": "<rootDir>/src/helpers/FileMock.ts"
}
},
"dependencies": {
"@mdi/font": "^4.7.95",
"@types/amplitude-js": "^4.4.5",
"bulma": "^0.7.5",
"bulma-checkradio": "^1.1.1",
"bulma-switch": "^2.0.0",
"bulma-tooltip": "^2.0.2",
"flatpickr": "^4.6.3",
"he": "^1.2.0",
"inferno": "^7.3.3",
"moment": "^2.24.0",
"randomcolor": "^0.5.4"
},
"devDependencies": {
"@babel/core": "7.7.7",
"@babel/plugin-proposal-class-properties": "7.7.4",
"@babel/plugin-proposal-optional-chaining": "7.8.3",
"@babel/plugin-transform-runtime": "7.7.6",
"@babel/plugin-transform-typescript": "7.7.4",
"@babel/preset-env": "7.7.7",
"@babel/preset-typescript": "7.7.7",
"@babel/runtime": "7.7.7",
"@types/d3": "^5.7.2",
"@types/jest": "^24.0.25",
"@types/node": "^12.12.24",
"babel-jest": "*",
"babel-plugin-inferno": "6.1.0",
"core-js": "^3.6.2",
"cssnano": "^4.1.10",
"d3": "^5.15.0",
"html-loader-jest": "^0.2.1",
"jest": "*",
"jest-fetch-mock": "^2.1.2",
"json": "^9.0.6",
"parcel": "^1.12.4",
"sass": "^1.24.3",
"tslint": "^6.0.0",
"typescript": "3.7.4"
}
}