-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.85 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
{
"name": "capp",
"version": "1.0.0",
"description": "Client for capp app",
"main": "capp/static/app/index.js",
"dependencies": {
"core-js": "^3.3.5",
"react": "^16.10.2",
"react-bulma-components": "^3.1.2",
"react-dom": "^16.10.2",
"react-helmet": "^5.2.1",
"react-router-dom": "^5.1.2",
"styled-components": "^4.4.0"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"axios": "^0.21.2",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.6",
"css-loader": "^3.2.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"file-loader": "^4.2.0",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"react-test-renderer": "^16.10.2",
"style-loader": "^1.0.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^4.11.1"
},
"scripts": {
"start": "webpack-dev-server",
"build": "webpack --config webpack.config.js",
"lint": "eslint --ext .js,.jsx ./capp/static/app/",
"lint:fix": "eslint --ext .js,.jsx --fix ./capp/static/app/",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keeners/capp.git"
},
"keywords": [
"django",
"react",
"webpack"
],
"author": "Bryan Hyshka <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/keeners/capp/issues"
},
"homepage": "https://github.com/keeners/capp#readme",
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules"
],
"moduleNameMapper": {
"\\.(gif|ttf|eot|svg)$": "<rootDir>/capp/static/app/tests/unit/mocks/fileMock.js",
"^@/(.*)$": "<rootDir>/capp/static/app/$1"
}
}
}