-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.34 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.34 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
{
"name": "dnavisualization.org",
"version": "2.0.0",
"description": "A web tool to turn DNA sequences into interactive visualizations",
"author": "Benjamin Lee",
"private": true,
"scripts": {
"asbuild": "asc plugins/assembly/index.ts -b static/wasm/optimized.wasm --sourceMap -O3",
"dev": "npm run asbuild && nuxt",
"dev:noasbuild": "nuxt",
"start": "npm run generate && nuxt start",
"generate": "npm run asbuild && nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --ignore-pattern static/ .",
"fix": "npm run lint -- --fix"
},
"dependencies": {
"@assemblyscript/loader": "^0.17.12",
"@nuxtjs/axios": "^5.12.4",
"@statnett/vue-plotly": "^0.3.2",
"bio-parsers": "^7.0.5",
"bootstrap": "^4.5.3",
"bootstrap-vue": "^2.21.2",
"color-hash": "^1.0.3",
"dnaviz": "^1.1.1",
"nuxt": "^2.14.12",
"nuxt-client-init-module": "^0.1.9",
"plotly.js": "^1.58.4",
"ve-range-utils": "^2.5.8",
"ve-sequence-utils": "^3.3.56"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^5.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"assemblyscript": "^0.17.12",
"babel-eslint": "^10.0.1",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-nuxt": ">=2.0.0",
"eslint-plugin-prettier": "^3.3.0",
"prettier": "^2.2.1"
}
}