-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 957 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 957 Bytes
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
{
"name": "pet-services",
"version": "1.0.0",
"description": "",
"main": "server/server.js",
"engines": {
"node": "16.19.0"
},
"scripts": {
"start": "node server --ignore client",
"develop": "concurrently \"cd server && npm run start\" \"cd client && npm start\"",
"install": "cd server && npm i && cd ../client && npm i",
"seed": "cd server && npm run seed",
"build": "cd client && npm run build"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"concurrently": "^5.1.0",
"tailwindcss": "^3.3.2"
},
"dependencies": {
"@babel/plugin-transform-classes": "^7.21.0",
"css-loader": "^6.7.3",
"postcss-preset-env": "^8.3.2",
"postcss-pseudo-class-any-link": "^8.0.2"
}
}