-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.33 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
{
"name": "practicerepo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node src/index.ts",
"build": "carco build",
"tailwind:css": "postcss src/public/index.css -o src/public/style.css",
"migrate": "npx sequelize-cli db:migrate --env=development",
"migrate:undo": "npx sequelize-cli db:migrate:undo --env=development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MrSharpp/practicerepo.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MrSharpp/practicerepo/issues"
},
"homepage": "https://github.com/MrSharpp/practicerepo#readme",
"dependencies": {
"@craco/craco": "^5.9.0",
"dotenv": "^16.0.0",
"edge": "^7.10.1",
"edge.js": "^5.3.4",
"express": "^4.17.3",
"express-session": "^1.17.2",
"mariadb": "^3.0.0",
"mysql": "^2.18.1",
"mysql2": "^2.3.3",
"PostCSS": "npm:postcss@^7.0.39",
"postcss-cli": "^9.1.0",
"sequelize": "^6.18.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/mysql": "^2.15.21",
"@types/node": "^17.0.23",
"autoprefixer": "^9.8.8",
"postcss": "^8.4.12",
"sequelize-cli": "^6.4.1",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.2.17"
}
}