-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.82 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.82 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
{
"name": "techmeet",
"version": "1.0.0",
"description": "Client for techmeet app",
"main": "techmeet/static/app/index.js",
"dependencies": {
"axios": "^0.18.1",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-helmet": "^5.2.1",
"react-router-dom": "^5.0.0",
"styled-components": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.5",
"babel-plugin-styled-components": "^1.10.0",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"file-loader": "^3.0.1",
"jest": "^24.8.0",
"prettier": "1.16.4",
"react-test-renderer": "^16.8.6",
"style-loader": "^0.23.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
},
"scripts": {
"start": "webpack-dev-server",
"build": "webpack --config webpack.config.js",
"lint": "eslint --ext .js,.jsx ./techmeet/static/app/",
"lint:fix": "eslint --ext .js,.jsx --fix ./techmeet/static/app/",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keeners/techmeet.git"
},
"keywords": [
"django",
"react",
"webpack"
],
"author": "Bryan Hyshka <bryan@hyshka.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/keeners/techmeet/issues"
},
"homepage": "https://github.com/keeners/techmeet#readme",
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules"
],
"moduleNameMapper": {
"\\.(gif|ttf|eot|svg)$": "<rootDir>/techmeet/static/app/tests/unit/mocks/fileMock.js",
"^@/(.*)$": "<rootDir>/techmeet/static/app/$1"
}
}
}