-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.74 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
{
"jest": {
"setupFiles": [
"<rootDir>/test/setup.ts"
],
"testEnvironment": "jsdom",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"moduleNameMapper": {
"\\.(css|scss)$": "identity-obj-proxy"
}
},
"dependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@types/enzyme": "^3.9.1",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/howler": "^2.1.0",
"@types/jest": "^24.0.12",
"@types/react": "^16.8.14",
"@types/react-dom": "^16.8.4",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"awesome-typescript-loader": "^5.2.1",
"concurrently": "^4.1.0",
"css-loader": "^2.1.1",
"electron": "^7.2.4",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.12.4",
"howler": "^2.1.2",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.8.0",
"node-sass": "^4.12.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"ts-jest": "^24.0.2",
"typescript": "^3.8.2",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.3.1"
},
"scripts": {
"lint": "eslint --quiet --ext .ts src",
"lint-fix": "eslint --quiet --fix --ext .ts src",
"test": "jest test/",
"start": "webpack-dev-server --config webpack.config.js",
"build": "webpack --config webpack.config.js --mode production",
"open-dev": "concurrently --kill-others 'webpack-dev-server --config webpack.config.js --mode development' 'sleep 5 && chromium http://localhost:8080 --no-sandbox'"
}
}