forked from AR-js-org/studio-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.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
{
"name": "studio-backend",
"version": "0.22.0",
"description": "Backend for arjs-studio project",
"main": "dist/arjs-studio-backend.min.js",
"repository": "[email protected]:AR-js-org/studio-backend.git",
"author": "[email protected]",
"license": "MIT",
"private": false,
"scripts": {
"test": "npx mocha --require esm test",
"build": "webpack --env.production --config webpack.config.js",
"lint": "eslint --ext .js src/",
"lint:fix": "eslint --fix --ext .js src/",
"watch": "webpack --env.production --watch --config webpack.config.js"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.5.5",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-mocha": "^6.2.2",
"eslint-plugin-mocha-no-only": "^1.1.0",
"esm": "^3.2.25",
"handlebars": "^4.7.6",
"handlebars-loader": "^1.7.1",
"mocha": "^7.1.1",
"terser-webpack-plugin": "^2.3.4",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6"
},
"dependencies": {
"@babel/runtime": "^7.8.4",
"@octokit/rest": "^16.38.2",
"jszip": "^3.2.2",
"regenerator-runtime": "^0.13.3"
}
}