-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 948 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 948 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
36
{
"name": "alcidion",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"format": "prettier --write \"src/**/*.{js,jsx}\"",
"lint": "eslint \"src/**/*.{js,jsx}\" --quiet"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"chance": "^1.1.0",
"concurrently": "^4.1.2",
"cors": "^2.8.5",
"express": "^4.17.1",
"faker": "^4.1.0",
"mysql": "^2.17.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"reactstrap": "^8.0.1",
"styled-components": "^4.3.2"
},
"devDependencies": {
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.3.0",
"nodemon": "^1.19.2",
"prettier": "^1.18.2"
}
}