-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 2.25 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
{
"name": "opensource.org.rw",
"version": "1.0.0",
"description": "Website(frontend) for opensource.org.rw",
"main": "src/index.js",
"scripts": {
"start": "serve ./dist",
"clean": "rm -rf ./dist",
"build": "yarn clean && NODE_ENV=production webpack --config webpack.config.js && yarn favicon",
"favicon": "cp ./public/favicon.ico ./dist/favicon.ico",
"test": "NODE_ENV=test jest --c=jest.config.js --logHeapUsage --runInBand --no-cache --detectOpenHandles --forceExit",
"start:dev": "NODE_ENV=development webpack-dev-server --config webpack.config.js --hot",
"lint": "eslint ./src/**/**.js ./src/**/**.jsx ./src/**/**.json --no-error-on-unmatched-pattern --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rwandaopensource/opensource.org.rw.git"
},
"keywords": [
"opensource.org.rw"
],
"author": "Rwanda Open Source",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/rwandaopensource/opensource.org.rw/issues"
},
"homepage": "https://github.com/rwandaopensource/opensource.org.rw#readme",
"devDependencies": {
"@babel/core": "^7.8.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.6",
"@babel/preset-react": "^7.8.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.6",
"css-loader": "^3.4.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-react": "^7.19.0",
"file-loader": "^5.1.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"node-sass": "^4.13.1",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"bulma": "^0.8.0",
"jquery": "^3.4.1",
"prop-types": "^15.7.2",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-redux": "^7.2.0",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"serve": "^11.3.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn test"
}
}
}