-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
78 lines (78 loc) · 2.3 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@graffiticode/graffiticode",
"version": "0.0.2",
"description": "Gateway for compilers as a service.",
"author": "Art Compiler LLC",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/graffiticode/graffiticode"
},
"dependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-regenerator": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@google-cloud/storage": "^5.8.4",
"@graffiticode/tracing": "^0.1.6",
"atob": "2.1.1",
"aws-sdk": "^2.1116.0",
"babel-loader": "^8.1.0",
"bent": "^7.3.12",
"body-parser": "^1.19.0",
"connect-timeout": "^1.9.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"css-loader": "^5.2.6",
"csv2json": "^1.4.2",
"d3": "^4.13.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-session": "^1.17.1",
"file-loader": "^6.2.0",
"hashids": "1.1.1",
"html-loader": "^1.3.1",
"html-webpack-inline-source-plugin": "^1.0.0-beta.2",
"html-webpack-plugin": "^4.5.0",
"https": "^1.0.0",
"https-browserify": "^1.0.0",
"linkfs": "^2.1.0",
"memfs": "^3.2.0",
"method-override": "^3.0.0",
"morgan": "^1.10.0",
"pg": "^8.2.1",
"qs": "^6.10.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"redis": "^3.1.2",
"regenerator-runtime": "^0.13.7",
"request": "^2.88.2",
"stream-http": "^3.2.0",
"style-loader": "^1.2.1",
"stylus": "^0.54.8",
"underscore": "1.12.x",
"unionfs": "^4.4.0",
"webpack": "^5.72.0"
},
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.4.1",
"flow-bin": "^0.32.0",
"graceful-fs": "^4.2.4",
"jest": "^26.5.3",
"nodemon": "^2.0.6",
"prop-types": "^15.7.2",
"supertest": "^4.0.2",
"uglify-js": "^2.7.3",
"webpack-cli": "^3.3.12",
"workbox-webpack-plugin": "^5.1.4"
},
"scripts": {
"build": "webpack --config config/webpack.config.js --mode production",
"build:dev": "webpack --config config/webpack.config.js --mode development",
"start": "node app.js",
"test": "jest --config config/jest.config.js",
"watch": "nodemon -w src -w public -w views -w app.js -w package.json --exec make"
}
}