-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.07 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
{
"name": "trevor",
"description": "Text Readability EValuatOR",
"version": "0.1.0",
"scripts": {
"dev": "sapper dev",
"build": "sapper build",
"export": "sapper export",
"export-with-base-url": "BASE_URL=/svelte-text-readability-scorer npx sapper export --basepath svelte-text-readability-scorer",
"start": "node __sapper__/build",
"cy:run": "cypress run",
"cy:open": "cypress open",
"test": "run-p --race dev cy:run",
"deploy": "npm run export && gh-pages -d __sapper__/export"
},
"dependencies": {
"compression": "^1.7.4",
"cypress": "^3.4.1",
"express": "^4.17.1",
"gh-pages": "^2.1.1",
"helmet": "^3.21.1",
"html-loader": "^0.5.5",
"markdown-it": "^10.0.0",
"markdown-loader": "^5.1.0",
"polka": "^0.5.2",
"sirv": "^0.4.2",
"syllable": "^4.0.0"
},
"devDependencies": {
"node-sass": "^4.13.1",
"npm-run-all": "^4.1.5",
"sapper": "^0.27.11",
"sass": "^1.22.12",
"svelte": "^3.12.1",
"svelte-loader": "^2.13.6",
"svelte-preprocess": "^3.1.2",
"webpack": "^4.7.0"
}
}