-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.64 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
{
"name": "graph-viewer",
"version": "0.1.0",
"author": "Andreas Blunk",
"license": "Apache License Version 2.0",
"private": true,
"devDependencies": {
"@types/dagre": "^0.7.40",
"@types/dotenv": "^4.0.3",
"@types/jest": "^22.2.2",
"@types/lodash": "^4.14.108",
"@types/node": "^9.6.1",
"@types/react": "^16.1.0",
"@types/react-dom": "^16.0.4",
"@types/react-router-dom": "^4.2.6",
"autoprefixer": "^8.2.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.4.3",
"parcel-bundler": "^1.7.0",
"postcss-modules": "^1.1.0",
"tachyons": "^4.10.0",
"ts-jest": "^22.4.2",
"tslint": "^5.9.1",
"tslint-config-standard": "^7.0.0",
"typescript": "^2.8.1"
},
"dependencies": {
"axios": "^0.18.0",
"dagre": "^0.8.2",
"dotenv": "^6.0.0",
"klayjs": "^0.4.1",
"lodash": "^4.17.10",
"node-cache": "^4.2.0",
"random-word": "^2.0.0",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-router-dom": "^4.2.2",
"styled-components": "3.2.5"
},
"scripts": {
"start": "parcel index.html",
"build": "parcel build index.html",
"test": "jest --env=jsdom"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"moduleNameMapper": {
"\\.(css)$": "identity-obj-proxy",
"\\.(svg)$": "<rootDir>/test/empty-module.js"
}
}
}