-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.63 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.63 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
{
"name": "atomic-canvas",
"version": "4.0.0",
"description": "Client side canvas api for Atomic Jolt",
"engines": {
"node": ">=14.18.2"
},
"scripts": {
"test": "jest --no-cache --config package.json",
"watch": "jest --watch",
"build": "tsc",
"clean": "rimraf libs",
"lint": "eslint src",
"prepack": "yarn clean && yarn build"
},
"jest": {
"testEnvironment": "jsdom"
},
"repository": {
"type": "git",
"url": "https://github.com/atomicjolt/atomic-canvas.git"
},
"author": "atomicjolt (http://github.com/atomicjolt)",
"license": "MIT",
"bugs": {
"url": "https://github.com/atomicjolt/atomic-canvas/issues"
},
"bin": "./inspect.js",
"dependencies": {
"cli-highlight": "^2.1"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@types/react-dom": "^19.0.0",
"babel-jest": "^29.7.0",
"graphql": "^16.6.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^29.7.0",
"lodash": "^4.17.11",
"mime": "^3.0.0",
"nock": "^13.2.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-redux": "^8.0.0 || ^9.0.0",
"react-test-renderer": "^19.0.0",
"redux": "^4.0.0 || ^5.0.0",
"superagent": "^7.1.1",
"typescript": "^4.7.2"
},
"peerDependencies": {
"@atomicjolt/atomic-fuel": "^7.0.3",
"prop-types": ">=15",
"react": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-redux": ">= 8.0.0 || >= 9.0.0",
"redux": ">= 4.0.0 || >= 5.0.0",
"superagent": ">= 7.0.0 < 11.0.0"
}
}