forked from snpeek/snpeek.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.27 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
{
"name": "snpeek",
"version": "1.0.0",
"main": "public/app.js",
"scripts": {
"test": "mocha",
"build": "webpack --mode production --progress",
"dev": "webpack --mode development --progress",
"watch": "webpack --watch --mode development --progress",
"start": "http-server public -a localhost -p 8000",
"gh-deploy-init": "git push origin && git subtree push --prefix public origin gh-pages",
"gh-deploy": "git push origin :gh-pages && git subtree push --prefix public origin gh-pages",
"generate-data": "node mock_scripts/make_23andme.js"
},
"keywords": [],
"author": "",
"license": "MIT",
"description": "",
"devDependencies": {
"@types/papaparse": "^5.3.7",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"chai": "^4.3.7",
"eslint": "^8.41.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"expose-loader": "^4.1.0",
"gh-pages": "^5.0.0",
"http-server": "^14.1.1",
"mocha": "^10.2.0",
"ts-loader": "^9.4.2",
"typescript": "^5.0.4",
"webpack": "^5.83.1",
"webpack-cli": "^5.1.1"
},
"dependencies": {
"papaparse": "^5.4.1"
}
}