-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 2.13 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
{
"name": "gene-info",
"version": "1.0.0",
"description": "Chrome extension for retrieving gene information",
"main": "package.json",
"scripts": {
"db-generate-linux": "npm run db-generate-linux --prefix database",
"db-generate-mac": "npm run db-generate-mac --prefix database",
"dev-api": "npm run dev-api --prefix api",
"prod-api": "npm run prod-api --prefix api",
"prod-api-forever": "npm run prod-api-forever --prefix api",
"dev-ext:chrome": "npm run dev-ext:chrome --prefix extension",
"dev-ext:firefox": "npm run dev-ext:firefox --prefix extension",
"prod-ext:chrome": "npm run prod-ext:chrome --prefix extension",
"prod-ext:edge": "npm run prod-ext:edge --prefix extension",
"prod-ext:firefox": "npm run prod-ext:firefox --prefix extension",
"prod-ext:safari": "npm run prod-ext:safari --prefix extension && ./safari-build.sh",
"prod-ext:test": "npm run prod-ext:test --prefix extension",
"start:chrome": "npm run start:chrome --prefix extension",
"start:firefox": "npm run start:firefox --prefix extension",
"doc-deploy": "npm run doc-deploy --prefix docs",
"doc-build": "npm run doc-build --prefix docs",
"doc-server": "npm run start --prefix docs",
"test": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/knightjdr/gene-info.git"
},
"author": "James Knight",
"license": "MIT",
"bugs": {
"url": "https://github.com/knightjdr/gene-info/issues"
},
"homepage": "https://github.com/knightjdr/gene-info#readme",
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@babel/plugin-transform-modules-commonjs": "^7.16.8",
"babel-eslint": "^10.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"jest": "^27.5.0",
"jshint": "^2.13.4",
"jshint-stylish": "^2.2.1"
},
"nodemonConfig": {
"ext": ".js",
"ignore": [
"log/*"
],
"watch": [
"api/*"
],
"verbose": true
}
}