-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 741 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 741 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
{
"name": "react-map",
"version": "0.1.0",
"description": "react-map",
"main": "server.mjs",
"scripts": {
"start": "node --experimental-modules server.mjs",
"client": "npm start --prefix client",
"server": "nodemon --experimental-modules server.mjs",
"lint": "npm run lint:js && npm run lint:serverJs && npm run lint:css",
"lint:js": "prettier --write client/src/**/*.js",
"lint:serverJs": "prettier --write server.mjs",
"lint:css": "stylelint client/src/**/*.js",
"heroku-postbuild": "npm i --prefix client && npm run build --prefix client"
},
"author": "Alex Nikishkin",
"license": "MIT",
"dependencies": {
"express": "4.16.4"
},
"devDependencies": {
"nodemon": "1.18.4"
}
}