-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.08 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": "aajm_list",
"version": "1.0.0",
"description": "A list application for me and Jess",
"main": "index.js",
"scripts": {
"dev": "webpack --mode development --watch",
"build": "webpack --mode production",
"test": "jest --testPathIgnorePatterns /staticfiles",
"testCov": "jest --testPathIgnorePatterns /staticfiles --collectCoverage --coveragePathIgnorePatterns /tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ahmed1293/aajm_list.git"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"bower_components",
"shared"
],
"setupFilesAfterEnv": [
"<rootDir>/frontend/src/setupTests.js"
],
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js",
"\\.(gif|ttf|eot|svg)$": "<rootDir>/__mocks__/fileMock.js"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ahmed1293/aajm_list/issues"
},
"homepage": "https://github.com/ahmed1293/aajm_list#readme",
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@testing-library/jest-dom": "^5.11.0",
"@testing-library/react": "^10.4.5",
"babel-jest": "^24.9.0",
"babel-loader": "^8.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"css-loader": "^3.6.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"jest": "^24.9.0",
"mini-css-extract-plugin": "^0.8.2",
"mutationobserver-shim": "^0.3.7",
"node-sass": "^4.14.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"weak-key": "^1.0.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.29",
"@fortawesome/free-solid-svg-icons": "^5.13.1",
"@fortawesome/react-fontawesome": "^0.1.11",
"bulma": "^0.9.0",
"js-cookie": "^2.2.1"
}
}