-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
100 lines (100 loc) · 3.05 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "phoenix-bn-frontend",
"version": "1.0.0",
"description": "Barefoot Nomad",
"main": "index.js",
"engines": {
"node": "12.x"
},
"scripts": {
"dev": "webpack-dev-server --mode development --open --hot",
"start": "npm run build && node server.js",
"build": "webpack --mode production",
"test": "jest -u",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test:watch": "jest --watch -u",
"test:coverage": "jest --coverage --colors -u",
"build:css": "tailwind build ./src/styles/tailwind.css -o ./src/styles/main.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atlp-rwanda/phoenix-bn-frontend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/atlp-rwanda/phoenix-bn-frontend/issues"
},
"homepage": "https://github.com/atlp-rwanda/phoenix-bn-frontend#readme",
"dependencies": {
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@wojtekmaj/enzyme-adapter-react-17": "^0.3.2",
"autoprefixer": "^10.1.0",
"axios": "^0.21.0",
"babel-core": "^7.0.0-bridge.0",
"babel-preset-stage-0": "^6.24.1",
"coverage": "^0.4.1",
"dotenv": "^8.2.0",
"dotenv-webpack": "^6.0.0",
"express": "^4.17.1",
"express-favicon": "^2.0.1",
"fs": "^0.0.1-security",
"helmet": "^4.2.0",
"heroku-ssl-redirect": "^0.1.1",
"i": "^0.3.6",
"npm": "^6.14.11",
"path": "^0.12.7",
"postcss": "^8.2.1",
"react": "^17.0.1",
"react-data-table-component": "^6.11.6",
"react-dom": "^17.0.1",
"react-dotenv": "^0.1.3",
"react-icons": "^4.1.0",
"react-loading-skeleton": "^2.1.1",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-toastify": "^6.2.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"styled-components": "^5.2.1",
"toastify-js": "^1.9.3",
"webpack-env-plugin": "^0.0.2"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"copy-webpack-plugin": "^6.0.3",
"css-loader": "^5.0.1",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.1",
"eslint": "^7.16.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^3.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-css-modules": "^2.1.0",
"jest-transform-stub": "^2.0.0",
"react-test-renderer": "^17.0.1",
"style-loader": "^2.0.0",
"tailwindcss": "^2.0.1",
"ttf-loader": "^1.0.2",
"url-loader": "^4.1.1",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.11.0"
}
}