-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
59 lines (59 loc) · 1.73 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
{
"name": "rss-game-bootstrap",
"version": "0.0.1",
"description": "RSS demo boostrap for task Game",
"main": "index.js",
"scripts": {
"lint": "eslint -c .eslintrc.js ./src/**/*.js",
"fix-lint": "eslint -c .eslintrc.js ./src/**/*.js --fix",
"watch": "webpack --watch",
"start": "webpack-dev-server --open",
"build": "webpack --mode production",
"test": "jest",
"debug-test": "node --inspect-brk node_modules/.bin/jest --runInBand",
"coverage": "jest --coverage"
},
"keywords": [],
"author": "davojta",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"css-loader": "^1.0.1",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"style-loader": "^0.23.1",
"webpack": "^4.26.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"dependencies": {
"bootstrap": "^4.1.3",
"es6-promise": "^4.2.5",
"isomorphic-fetch": "^2.2.1",
"jquery": "^3.3.1",
"popper.js": "^1.14.6",
"regenerator-runtime": "^0.11.1"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga|html)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
},
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/legacy_notes_and_workbook/",
"<rootDir>/client/src/stylesheets/"
]
}
}