-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.39 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
{
"name": "api",
"type": "commonjs",
"main": "dist/api/server.js",
"scripts": {
"start": "node .",
"watch:scss": "sass public/css/ public/css --watch",
"build:scss": "sass public/css/ public/css",
"development": "rollup --config rollup.config.js --environment NODE_ENV:development --watch",
"production": "rollup --config rollup.config.js --environment NODE_ENV:production",
"build": "concurrently 'npm:build:scss' 'npm:production'",
"dev": "NODE_ENV=development concurrently 'npm:development' 'npm:watch:scss' 'npm:start'",
"prod": "NODE_ENV=production concurrently 'npm:build' 'npm:start'",
"cert": "mkcert -install -cert-file ./https/fastify.cert -key-file ./https/fastify.key localhost"
},
"dependencies": {
"dotenv": "^16.0.2",
"fastify": "^3.11.0",
"fastify-cli": "^2.15.0",
"fastify-cors": "^5.2.0",
"fastify-static": "^4.6.1",
"got": "^11.8.3",
"jsdom": "^19.0.0",
"sass": "^1.50.0",
"typescript": "^4.6.3"
},
"devDependencies": {
"@poppinss/cliui": "^3.0.2",
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.3.1",
"@types/jsdom": "^16.2.14",
"concurrently": "^7.1.0",
"rollup": "^2.70.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.3.1"
}
}