-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.6 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
42
43
44
45
46
47
48
{
"name": "dynamic_drawings",
"version": "0.1.0",
"private": true,
"dependencies": {
"@types/lodash": "^4.14.148",
"deep-equal": "^1.1.1",
"jest": "^23.6.0",
"lodash": "^4.17.15",
"ohm-js": "^0.14.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-scripts-ts": "3.1.0",
"shallow-equals": "^1.0.0",
"tslib": "^1.10.0"
},
"scripts": {
"start": "react-scripts-ts start",
"build": "react-scripts-ts build",
"test": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject",
"build-css": "lessc src/css/allthestyles.less src/css/allthestyles.css --source-map=src/css/allthestyles.css.map",
"watch-less": "less-watch-compiler src/css src/css allthestyles.less --source-map"
},
"devDependencies": {
"@types/jest": "^23.3.14",
"@types/node": "^10.17.5",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"typescript": "^3.7.2"
},
"jest": {
"moduleNameMapper": {
"^@app(.*)$": "<rootDir>/src/app$1",
"^@css(.*)$": "<rootDir>/src/css$1",
"^@controllers(.*)$": "<rootDir>/src/controllers$1",
"^@core(.*)$": "<rootDir>/src/core$1",
"^@drawing(.*)$": "<rootDir>/src/core/drawing$1",
"^@language(.*)$": "<rootDir>/src/core/language$1",
"^@models(.*)$": "<rootDir>/src/core/models$1",
"^@paths(.*)$": "<rootDir>/src/core/paths$1",
"^@standard_library(.*)$": "<rootDir>/src/core/standard_library$1",
"^@test_utils(.*)$": "<rootDir>/src/test_utils$1",
"^@utils(.*)$": "<rootDir>/src/utils$1",
"^@views(.*)$": "<rootDir>/src/views$1"
}
}
}