-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
executable file
·37 lines (37 loc) · 1003 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
33
34
35
36
37
{
"name": "goat-sneakers",
"version": "1.0.0",
"description": "Mock JSON server to support Frontend take-home interview.",
"author": "GOAT Engineering <[email protected]>",
"license": "UNLICENSED",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": "^10.15.0"
},
"engineStrict": true,
"scripts": {
"build": "(cd packages/app && npm run build:static)",
"start:server": "json-server api.json --host 0.0.0.0 --port 5000 --watch",
"start": "(cd packages/app && npm start)",
"test": "lerna run test"
},
"dependencies": {
"json-server": "^0.14.2"
},
"devDependencies": {
"@testing-library/react": "^9.3.0",
"@testing-library/react-hooks": "^2.0.3",
"@types/jest": "^24.0.18",
"axios-mock-adapter": "^1.17.0",
"babel-jest": "^24.9.0",
"jest": "^24.9.0",
"jest-styled-components": "^6.3.3",
"lerna": "^3.15.0",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"styled-components": "^4.4.0"
}
}