-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.38 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
{
"name": "luyten",
"version": "1.0.2",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "babel-node -r dotenv/config src/index.js",
"watch": "nodemon --exec babel-node -r dotenv/config src/index.js",
"clean": "rm -rf ./dist && mkdir dist",
"build": "npm run clean && babel src -d dist && cp -r src/assets dist/assets"
},
"keywords": [],
"author": "Matheus Dias <[email protected]>",
"license": "GPL-3.0",
"dependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.2",
"@babel/node": "^7.14.2",
"@babel/plugin-transform-modules-commonjs": "^7.14.0",
"@babel/plugin-transform-runtime": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"@musicorum/quadro": "^1.1.3",
"canvas": "^2.7.0",
"chalk": "^4.1.1",
"chroma-js": "^2.1.1",
"express": "^4.17.1",
"imagemin": "^7.0.1",
"imagemin-webp": "^6.0.0",
"node-fetch": "^2.6.1",
"stackblur-canvas": "^2.5.0",
"winston": "^3.3.3",
"yaml": "^1.10.2"
},
"devDependencies": {
"dotenv": "^8.6.0",
"eslint": "^7.26.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"nodemon": "^2.0.4"
}
}