This repository has been archived by the owner on Feb 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.55 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
{
"name": "pdf-generator-experiment",
"version": "1.0.0",
"main": "index.js",
"author": "C.J. Winslow <[email protected]> (https://github.com/whoaa512)",
"license": "MIT",
"scripts": {
"test": "jest",
"dev": "zero ./src",
"build": "zero build ./src",
"start": "NODE_ENV=production zero ./src",
"start-experiment": "node experiment/index.js",
"snyk-protect": "snyk protect",
"prepublish": "yarn run snyk-protect"
},
"dependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/polyfill": "^7.2.5",
"body-parser": "^1.18.3",
"express": "^4.17.3",
"get-stream": "^5.0.0",
"jsx-pdf": "^2.1.0",
"lodash": "^4.17.21",
"normalize.css": "^8.0.1",
"pdfmake": "^0.1.54",
"pify": "^4.0.1",
"prism-themes": "^1.0.1",
"prismjs": "^1.27.0",
"prop-types": "^15.7.2",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-simple-code-editor": "^0.9.4",
"ui-box": "^1.4.0",
"unfetch": "^4.1.0",
"vm2": "^3.9.11",
"zero": "^1.0.11",
"snyk": "^1.271.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/preset-env": "^7.3.4",
"babel-jest": "^24.5.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-module-resolver": "^3.2.0",
"eslint": "^5.15.3",
"eslint-config-fictiv": "^10.0.0",
"eslint-import-resolver-babel-module": "^5.0.1",
"flow-bin": "^0.95.1",
"jest": "^24.5.0"
},
"jest": {
"verbose": true,
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"snyk": true
}