-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.33 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
{
"name": "functional-ts-chip8",
"version": "0.1.0",
"private": true,
"homepage": "https://smparsons.github.io/functional-ts-chip8",
"dependencies": {
"pure-rand": "^1.6.2"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.3",
"awesome-typescript-loader": "^5.2.1",
"copy-webpack-plugin": "^5.0.4",
"gh-pages": "^2.1.1",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"prettier-tslint": "^0.4.2",
"source-map-loader": "^0.2.4",
"ts-jest": "^24.0.2",
"tslint": "^5.19.0",
"tslint-config-prettier": "^1.18.0",
"tslint-loader": "^3.5.4",
"typescript": "^3.6.2",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0"
},
"scripts": {
"start": "webpack-dev-server --port 9000 --inline --progress --profile --colors --watch --content-base src/ --mode development",
"build": "webpack --config webpack.config.js --mode production",
"test": "jest",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"moduleNameMapper": {
"src(.*)$": "<rootDir>/src/$1"
},
"transform": {
"\\.(ts)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$"
}
}