-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1015 Bytes
/
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
{
"name": "forest",
"version": "0.0.0",
"type": "module",
"description": "",
"main": "index.js",
"scripts": {
"build": "npx postcss src/css/style.css -o assets/tailwind.css --config=postcss.config.cjs && tsc && node --harmony-top-level-await bin/src/index.js",
"start": "nodemon --exec 'npm run build'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@types/config": "0.0.36",
"@types/express": "^4.17.6",
"@types/i18n": "^0.8.6",
"@types/mongodb": "^3.5.20",
"awesome-typescript-loader": "^5.2.1",
"config": "^3.3.1",
"dotenv": "^8.2.0",
"ejs": "^3.1.3",
"express": "^4.17.1",
"i18n": "^0.10.0",
"mongodb": "^3.5.9"
},
"devDependencies": {
"@types/node": "^14.11.5",
"cssnano": "^4.1.10",
"nodemon": "^2.0.4",
"postcss-cli": "^8.1.0",
"tailwindcss": "^1.9.5",
"typescript": "^3.9.5"
},
"nodemonConfig": {
"ext": "ts"
}
}