forked from arxiv-vanity/engrafo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.7 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
{
"name": "engrafo",
"version": "1.0.0",
"main": "src/index.js",
"author": "Andreas Jansson & Ben Firshman",
"license": "Apache-2.0",
"scripts": {
"build": "parcel build src/assets/css/index.scss src/assets/javascript/index.js",
"convert": "LATEXML_DOCKER=true bin/engrafo",
"prettier": "prettier --write \"{src,tests}/**/*.js\"",
"prettier-check": "prettier-check \"{src,tests}/**/*.js\"",
"dev-server": "LATEXML_DOCKER=true bin/engrafo-dev-server",
"test": "LATEXML_DOCKER=true yarn run test-inside-docker",
"test-inside-docker": "yarn run prettier-check && jest",
"storybook": "start-storybook -p 6006 -c .storybook -s tests/integration/",
"build-storybook": "build-storybook -c .storybook -s tests/integration/"
},
"dependencies": {
"aws-sdk": "^2.441.0",
"axios": "^0.21.1",
"dotenv": "^8.2.0",
"execa": "^5.0.0",
"express": "^4.17.1",
"express-validator": "^6.9.2",
"fs-extra": "^9.1.0",
"include-media": "^1.4.9",
"jsdom": "^11.0.0",
"linkify-urls": "^3.1.1",
"lodash": "^4.17.21",
"mathjax-node-page": "^3.2.0",
"raven": "^2.6.4",
"s3-recursive-uploader": "^0.3.0",
"tippy.js": "^4.3.5",
"titlecase": "^1.1.2",
"tmp-promise": "^3.0.2"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/runtime": "^7.12.13",
"@storybook/addon-viewport": "^5.1.11",
"@storybook/html": "^5.1.11",
"babel-loader": "^8.2.2",
"chalk": "^4.1.0",
"eslint": "^7.19.0",
"jest": "^26.2.2",
"klaw-sync": "^6.0.0",
"node-sass": "^5.0.0",
"parcel-bundler": "^1.12.4",
"prettier": "^2.2.1",
"prettier-check": "^2.0.0",
"sass-loader": "^11.0.1",
"supertest": "^6.1.3"
}
}