generated from Exabyte-io/template-definitions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@exabyte-io/ade.js",
"version": "0.0.0",
"description": "Application DEfinitions",
"scripts": {
"test": "nyc --reporter=text mocha --recursive --bail --require @babel/register/lib --require tests/setup.js tests",
"lint": "eslint src tests && prettier --write src tests",
"lint:fix": "eslint --fix --cache src tests && prettier --write src tests",
"transpile": "babel --out-dir dist src",
"postinstall": "npm run transpile",
"prettier": "prettier --check src tests",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/Exabyte-io/ade.js.git"
},
"main": "dist/index.js",
"files": [
"/dist",
"/src",
".babelrc"
],
"author": "Exabyte Inc.",
"bugs": {
"url": "https://github.com/Exabyte-io/ade.js/issues"
},
"license": "Apache-2.0",
"homepage": "https://github.com/Exabyte-io/ade.js",
"dependencies": {
"@babel/cli": "7.16.0",
"@babel/core": "7.16.0",
"@babel/eslint-parser": "7.16.3",
"@babel/plugin-proposal-class-properties": "7.16.0",
"@babel/preset-env": "7.16.4",
"@babel/preset-react": "7.16.7",
"@babel/register": "^7.16.0",
"@babel/runtime-corejs3": "7.16.8",
"@exabyte-io/periodic-table.js": "2022.6.8-0",
"lodash": "^4.17.21",
"mixwith": "^0.1.1",
"swig": "^1.4.2",
"underscore": "^1.13.3",
"underscore.string": "^3.3.4"
},
"devDependencies": {
"@exabyte-io/eslint-config": "^2022.11.17-0",
"@exabyte-io/application-flavors.js": "2024.9.8-1",
"@mat3ra/code": "2024.3.25-3",
"@mat3ra/made": "2024.3.26-0",
"@mat3ra/esse": "2024.4.19-1",
"chai": "^4.3.4",
"eslint": "7.32.0",
"eslint-config-airbnb": "19.0.2",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jsdoc": "37.1.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "7.30.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"prettier": "^2.7.1"
},
"peerDependencies": {
"@mat3ra/code": "*",
"@mat3ra/esse": "*",
"@mat3ra/made": "*",
"@exabyte-io/application-flavors.js": "*"
},
"engines": {
"node": ">=12.0.0"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css}": "prettier --write"
}
}