-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1 KB
/
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
33
34
35
{
"name": "react-customer-manager",
"version": "1.0.0",
"description": "Basic crud react app for managing customers",
"author": "Rodney",
"license": "MIT",
"dependencies": {
"axios": "^0.16.0",
"classnames": "^2.2.5",
"json-server": "^0.12.1",
"mddir": "^1.1.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.3",
"react-router-dom": "^4.0.0",
"redux": "^3.6.0",
"redux-devtools-extension": "^2.13.0",
"redux-form": "^6.6.1",
"redux-promise-middleware": "^4.2.0",
"redux-thunk": "^2.2.0",
"semantic-ui-css": "^2.2.10",
"semantic-ui-react": "^0.67.2"
},
"devDependencies": {
"concurrently": "^3.5.0",
"react-scripts": "0.9.5"
},
"scripts": {
"start-client": "react-scripts start",
"start-server": "json-server --watch customers.json --port 3001",
"start": "concurrently \"npm run start-server\" \"npm run start-client\"",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}