This repository has been archived by the owner on Dec 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
87 lines (87 loc) · 2.5 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
77
78
79
80
81
82
83
84
85
86
87
{
"name": "atomic-fuel",
"version": "7.0.0",
"description": "Atomic Jolt's front-end library code",
"scripts": {
"test": "jest --no-cache --config package.json",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand --watch --config package.json",
"type-check": "tsc --noEmit",
"type-check:watch": "yarn type-check -- --watch",
"build": "tsc",
"nuke": "rm -rf node_modules",
"clean": "rm -rf libs/*",
"lint": "eslint src",
"lint_fix": "eslint src --fix",
"prepack": "yarn clean && yarn build"
},
"repository": {
"type": "git",
"url": "https://github.com/atomicjolt/atomic-fuel.git"
},
"keywords": [
"react",
"reactjs",
"redux"
],
"jest": {
"moduleNameMapper": {
"^.+\\.(css|less)$": "<rootDir>/src/css-stub.js"
},
"testEnvironment": "jsdom"
},
"author": "atomicjolt (http://github.com/atomicjolt)",
"license": "MIT",
"bugs": {
"url": "https://github.com/atomicjolt/atomic-fuel/issues"
},
"homepage": "https://github.com/atomicjolt/atomic-fuel",
"main": "libs/index.js",
"peerDependencies": {
"lodash": "^4.17.21",
"react": "^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0",
"react-redux": "^8.0.0",
"redux": "^4.1.2",
"superagent": ">= 7.0.0 < 11.0.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@testing-library/react": "^13.2.0",
"@types/jest": "^27.5.1",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"babel-jest": "^29.7.0",
"classnames": "^2.3.1",
"eslint": "^8.16.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"graphql": "^16.6.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"lodash": "^4.17.15",
"nock": "^13.2.4",
"npm-run-all": "^4.1.5",
"prop-types": "^15.8.1",
"react": "^18.1.0",
"react-docgen-typescript": "^2.2.2",
"react-dom": "^18.1.0",
"react-redux": "^8.0.2",
"redux": "^4.2.0",
"redux-mock-store": "^1.5.4",
"superagent": "^7.1.3",
"tslint": "^6.1.3",
"typescript": "^4.7.2",
"yarn": "^1.22.19"
},
"dependencies": {
"@apollo/client": "~3"
}
}