-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.36 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
{
"name": "@interconnectit/hadrian",
"version": "2.0.0",
"description": "HadrianJS Framework",
"main": "src/index.js",
"scripts": {
"watch": "webpack --watch --mode development",
"build": "webpack --mode production",
"lint": "eslint src",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/interconnectit/hadrian-js.git"
},
"keywords": [
"hadrian"
],
"author": "interconnect/it",
"license": "MIT",
"bugs": {
"url": "https://github.com/interconnectit/hadrian-js/issues"
},
"homepage": "https://github.com/interconnectit/hadrian-js#readme",
"engines": {
"node": "16.15.1",
"npm": "8.17.0"
},
"dependencies": {
"axios": "1.5.1",
"@babel/runtime": "7.23.2",
"js-cookie": "3.0.5",
"lodash": "4.17.21"
},
"devDependencies": {
"@babel/core": "7.23.2",
"@babel/plugin-transform-runtime": "7.23.2",
"@babel/preset-env": "7.23.2",
"babel-loader": "9.1.3",
"eslint": "8.51.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"jest": "29.7.0",
"webpack": "5.89.0",
"webpack-cli": "5.1.4"
}
}