-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.8 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "fullstack-test",
"version": "1.0.0",
"description": "Response for technical test for Full Stack Engineer position at Kisso",
"repository": "https://github.com/KissoHQ/fullstack-test",
"author": "Tejas Sharma <[email protected]>",
"license": "MIT",
"private": false,
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"autoprefixer": "^9.8.0",
"axios": "^0.19.2",
"axios-mock-adapter": "^1.18.1",
"bootstrap": "^4.5.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"express": "^4.17.1",
"postcss-cli": "^7.1.1",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-bootstrap": "^1.0.1",
"react-device-detect": "^1.12.1",
"react-dom": "^16.13.1",
"react-responsive": "^8.1.0",
"react-reveal": "^1.2.2",
"react-scripts": "3.4.1",
"react-simple-maps": "^2.1.2",
"tailwindcss": "^1.4.6"
},
"scripts": {
"build:css": "postcss src/styles/main.css -o src/index.css",
"watch:css": "postcss src/styles/main.css -o src/index.css -w",
"start": "npm-run-all -p watch:css start-js",
"start-js": "react-scripts start",
"build-js": "react-scripts build",
"build": "npm-run-all build:css build-js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"format": "prettier --write \"**/*.+(js|jsx|json|css|md)\""
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"postcss-nested": "^4.2.1"
}
}