forked from oslabs-beta/nuQLeus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.12 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.12 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "nuqleus",
"version": "0.1.0",
"description": "Boost GraphQL endpoint testing capabilities with resolver-level performance metrics",
"main": "main.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"dev": "webpack serve --open --hot"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oslabs-beta/NuQLeus"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/oslabs-beta/NuQLeus/issues"
},
"homepage": "https://github.com/oslabs-beta/NuQLeus#readme",
"jest": {
"moduleFileExtensions": ["js", "jsx"],
"moduleDirectories": ["node_modules", "bower_components", "shared"],
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
},
"transformIgnorePatterns": [
"/node_modules/codemirror/lib.+\\.css$"
],
"^react(.*)$": "<rootDir>/vendor/react-master$1",
"^config$": "<rootDir>/configs/app-config.js"
},
"dependencies": {
"@tsconfig/recommended": "^1.0.1",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.1",
"codemirror": "^5.59.4",
"codemirror-graphql": "^1.0.0",
"graphql": "^15.5.0",
"react": "^16.14.0",
"react-codemirror2": "^7.2.1",
"react-dom": "^16.14.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"victory": "^35.4.11"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.5",
"@babel/plugin-transform-runtime": "^7.12.15",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"babel-jest": "^26.6.3",
"babel-loader": "^8.0.2",
"css-loader": "^1.0.0",
"enzyme": "^3.11.0",
"jest": "^26.6.3",
"style-loader": "^0.23.0",
"ts-loader": "^8.0.17",
"typescript": "^4.2.2",
"webpack": "^4.46.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
}
}