-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.93 KB
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
48
49
50
51
52
{
"name": "template-fullstack",
"version": "3.0.0",
"description": "project template for the React-Express-MySQL cursus in Wild Code School",
"homepage": "https://github.com/wildcodeschool/js-template-fullstack#readme",
"bugs": {
"url": "https://github.com/wildcodeschool/js-template-fullstack/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wildcodeschool/js-template-fullstack.git"
},
"config": {
"cli": "npm"
},
"scripts": {
"start": "node app.js",
"postinstall": "cross-env-shell \"husky install && cd ./frontend && $npm_package_config_cli install && cd ../backend && $npm_package_config_cli install\"",
"migrate": "cd ./backend && node migrate.js",
"dev": "cross-env-shell 'concurrently -c green,yellow -t \"HH:mm:ss\" -p \"{name} {time}\" \"$npm_package_config_cli:dev-*\"'",
"dev-front": "cross-env-shell \"cd ./frontend && $npm_package_config_cli run dev\"",
"dev-back": "cross-env-shell \"cd ./backend && $npm_package_config_cli run dev\"",
"lint": "cross-env-shell \"cd ./frontend && $npm_package_config_cli run lint && cd ../backend && $npm_package_config_cli run lint\"",
"fix": "cross-env-shell \"cd ./frontend && $npm_package_config_cli run fix && cd ../backend && $npm_package_config_cli run fix\""
},
"keywords": [],
"author": "Wild Code School",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^10.4.14",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"husky": "^8.0.3",
"postcss": "^8.4.24",
"tailwindcss": "^3.3.2"
},
"dependencies": {
"@emailjs/browser": "^3.11.0",
"axios": "^1.4.0",
"date-fns": "^2.30.0",
"dotenv": "^16.3.1",
"js-cookie": "^3.0.5",
"jwt-decode": "^3.1.2",
"multer": "^1.4.5-lts.1",
"react-hook-form": "^7.44.3",
"react-icons": "^4.9.0",
"react-scripts": "^5.0.1",
"slick-carousel": "^1.8.1",
"tailwind": "^4.0.0",
"uuid": "^9.0.0"
}
}