-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 866 Bytes
/
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
{
"name": "react-intl-server",
"version": "1.0.0",
"description": "Manage your React-Intl translations with Web UI",
"main": "index.js",
"port": "8001",
"config": "./client/src/.config.json",
"repository": "https://github.com/dachinat/react-intl-server.git",
"author": "Dachi Natsvlishvili",
"license": "MIT",
"private": false,
"scripts": {
"lint": "eslint",
"client": "cd client; yarn start; cd ..",
"server": "nodemon index.js",
"start": "concurrently \"yarn client\" \"yarn server\""
},
"dependencies": {
"body-parser": "^1.18.3",
"compression": "^1.7.2",
"directory-tree": "^2.1.0",
"express": "^4.16.3",
"helmet": "^3.12.1",
"morgan": "^1.9.0"
},
"devDependencies": {
"concurrently": "^3.5.1",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.9.1",
"nodemon": "^1.17.5"
}
}