-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.25 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
{
"name": "@oddcamp/js-utils",
"version": "1.1.4",
"description": "Odd Camp's JavaScript utilities",
"license": "MIT",
"author": "Odd Camp",
"main": "",
"scripts": {
"dev": "concurrently --kill-others \"yarn demo\" \"yarn watch\"",
"demo": "node ./server.js",
"watch": "esw ./src --watch --color",
"lint-js": "eslint ./src --ext js",
"format-js": "eslint ./src --ext js --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oddcamp/js-utils.git"
},
"bugs": {
"url": "https://github.com/oddcamp/js-utils/issues"
},
"homepage": "https://github.com/oddcamp/js-utils#readme",
"devDependencies": {
"babel-eslint": "^10.1.0",
"concurrently": "^7.1.0",
"eslint": "^8.2.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-flowtype": "^8.0.2",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-html-erb": "^1.0.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.0",
"eslint-watch": "^8.0.0",
"express": "^4.17.1",
"path": "^0.12.7",
"prettier": "^2.4.1"
},
"dependencies": {}
}