-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
74 lines (74 loc) · 2.11 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
{
"name": "artemis-dev-tool",
"version": "1.0.0",
"description": "",
"main": "devtools.js",
"scripts": {
"test": "jest --verbose -u",
"test:coverage": "jest --coverage",
"build": "webpack --mode production",
"dev": "NODE_ENV=production webpack --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArtemisLabsLLP/Artemis-dev-tool.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ArtemisLabsLLP/Artemis-dev-tool/issues"
},
"homepage": "https://github.com/ArtemisLabsLLP/Artemis-dev-tool#readme",
"dependencies": {
"@babel/preset-typescript": "^7.7.4",
"@types/chrome": "0.0.91",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"graphql-syntax-highlighter-react": "^0.4.0",
"moment": "^2.24.0",
"react": "^16.12.0",
"react-collapsible": "^2.6.2",
"react-d3-tree": "^1.15.3",
"react-dom": "^16.12.0",
"react-json-view": "^1.19.1",
"react-test-renderer": "^16.12.0",
"semantic-ui-react": "^0.88.1"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"@types/enzyme": "^3.10.4",
"@types/jest": "^24.0.23",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"babel-loader": "^8.0.6",
"concurrently": "^5.0.0",
"css-loader": "^3.2.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"enzyme-to-json": "^3.4.3",
"eslint": "^6.7.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^1.7.0",
"jest": "^24.9.0",
"node-sass": "^4.13.0",
"react-test-renderer": "^16.12.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"ts-loader": "^6.2.1",
"typescript": "^3.7.3",
"webpack": "^4.41.3",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}