forked from Zuri-Team/hng-board-reactjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.48 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.48 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "hng_board",
"version": "1.3.0",
"private": true,
"dependencies": {
"axios": "^0.19.2",
"bootstrap": "^3.4.1",
"chartist": "0.10.1",
"moment": "^2.24.0",
"node-sass": "4.12.0",
"react": "16.8.6",
"react-bootstrap": "0.32.4",
"react-chartist": "0.13.3",
"react-dom": "16.8.6",
"react-google-maps": "9.4.5",
"react-helmet": "^5.2.1",
"react-notification-system": "0.2.17",
"react-redux": "^7.2.0",
"react-router": "5.0.0",
"react-router-dom": "5.0.0",
"react-scripts": "3.0.0",
"react-toggle": "4.0.2",
"reactstrap": "^8.0.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"styled-components": "^5.0.1",
"tailwindcss": "^1.2.0"
},
"devDependencies": {
"@types/googlemaps": "3.30.19",
"@types/markerclustererplus": "2.1.33",
"@types/react": "16.8.13",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"autoprefixer": "^9.7.5",
"eslint": "^5.16.0",
"babel-eslint": "10.0.1",
"eslint-config-prettier": "^6.10.1",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"postcss-cli": "^7.1.0",
"prettier": "^2.0.2",
"typescript": "^3.4.3"
},
"scripts": {
"build:style": "postcss src/styles/index.css -c tailwind.js -o src/styles/tailwind.css",
"start": "npm run build:style && react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"install:clean": "rm -rf node_modules/ && rm -rf package-lock.json && npm install && npm start",
"compile-sass": "node-sass src/assets/sass/hng_board.scss src/assets/css/hng_board.css",
"minify-sass": "node-sass src/assets/sass/hng_board.scss src/assets/css/hng_board.min.css --output-style compressed",
"map-sass": "node-sass src/assets/sass/hng_board.scss src/assets/css/hng_board.css --source-map true",
"lint": "eslint .",
"lint:fix": "eslint --fix --ext .js,.jsx, ."
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}