-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 4.51 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 4.51 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "hull-connector",
"description": "Hull Connector Archetype (Uses Builder)",
"version": "1.0.51",
"main": "dist/index.js",
"license": "MIT",
"homepage": "https://hull.io/docs",
"keywords": [
"hull",
"ship",
"hull-ship"
],
"author": {
"name": "Hull",
"email": "contact@hull.io",
"url": "https://github.com/hull"
},
"engines": {
"node": ">=10.x",
"npm": ">=3.x"
},
"lint-staged": {
"*.{js,jsx,css,less,scss,json}": [
"prettier --write",
"git add"
]
},
"prettier": {
"trailingComma": "es5",
"arrowParens": "avoid",
"semi": true,
"parser": "babylon"
},
"bin": {
"hull-repl": "dev/lib/electrode/index.js"
},
"scripts": {
"gen-dev": "./node_modules/.bin/builder-support gen-dev ; yarn run devconnector",
"devconnector": "NODE_ENV=production npx babel dev/server --copy-files -d dev/lib",
"publish:both": "npm run gen-dev ; npm run prepare ; npm publish ; npm publish dev",
"lint": "eslint --color -c config/eslint/.eslintrc src server",
"flow": "flow",
"clean": "rimraf dist; rimraf lib",
"update": "npm-check",
"precommit": "lint-staged",
"npm:postinstall": "builder --env='{\"NODE_ENV\":\"production\"}' run build",
"prepare": "NODE_ENV=production npx babel lib --copy-files -d dist",
"prettier": "prettier \"src/**/*.js\" --write \"server/**/*.js\"",
"build": "builder run clean && builder run build:server && builder run build:client",
"build:server": "NODE_ENV=production npx babel server --copy-files -d lib",
"build:client": "NODE_ENV=production webpack --config ./node_modules/hull-connector/config/webpack.config.js",
"dev": "NODE_ENV=development babel-watch -w server server/index.js",
"npm:test": "builder run test:lint && builder run test:units && builder run test:specs",
"test:electrode": "node ./tests/electrode",
"test:lint": "eslint server",
"test:modules": "npm outdated --depth=0",
"test:coverage": "NODE_ENV=test jest --env=jsdom --config=jest.config.json --coverage",
"test:client": "NODE_ENV=test jest --env=jsdom --config=jest.config.json",
"test:units": "NODE_ENV=test mocha --opts ./tests/mocha.opts ./tests/unit/*.js",
"test:units:watch": "NODE_ENV=test mocha --watch --opts ./tests/mocha.opts ./tests/unit/*.js",
"test:specs": "NODE_ENV=test mocha --opts ./tests/mocha.opts ./tests/integration/*.js",
"test:specs:watch": "NODE_ENV=test mocha --watch --opts ./tests/mocha.opts ./tests/integration/*.js"
},
"dependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.0.0",
"@babel/eslint-parser": "^7.18.2",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-flow": "^7.17.12",
"@babel/preset-react": "^7.17.12",
"autoprefixer": "^10.4.7",
"babel-plugin-replace-require": "^0.0.4",
"babel-watch": "^7.7.0",
"builder": "^5.0.0",
"builder-support": "^0.5.0",
"chalk": "^2.4.2",
"css-loader": "^5.2.7",
"dotenv": "^4.0.0",
"exit-hook": "^1.1.1",
"faker": "^4.1.0",
"glob": "^7.1.6",
"happypack": "^5.0.1",
"lint-staged": "^6.1.1",
"lodash": "^4.17.21",
"lodash-id": "^0.14.0",
"mini-application": "^1.1.1",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^4.2.0",
"sass-loader": "^13.0.0",
"shelljs": "^0.8.4",
"style-loader": "^0.23.1",
"svg-inline-loader": "^0.8.2",
"terser-webpack-plugin": "^5.0.0",
"webpack": "^5.73.0",
"webpack-alternate-require-loader": "^0.0.3"
},
"devDependencies": {
"npm-check": "^5.9.2",
"rimraf": "^2.7.1",
"webpack-cli": "^4.9.2"
}
}