-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.94 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
{
"name": "react-mobx-minesweeper",
"version": "1.0.0",
"description": "A react starter project using typescript",
"main": "dist/index.html",
"scripts": {
"start": "parcel src/index.html",
"build": "parcel build src/index.html --public-url '.'",
"deploy": "npm run build && gh-pages -d dist",
"test": "jest",
"test:w": "jest --watch",
"check": "npm run check:ts && npm run lint",
"check:ts": "tsc --noEmit",
"lint": "tslint -r node_modules/tslint-microsoft-contrib 'src/**/*.ts' 'src/**/*.tsx'",
"tsfmt": "find src | grep '\\.tsx?$' -E | xargs tsfmt -r"
},
"author": "Tom Esterez",
"license": "ISC",
"dependencies": {
"@types/core-decorators": "^0.20.0",
"@types/enzyme": "^3.1.9",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/jest": "^22.1.4",
"@types/lodash": "^4.14.104",
"@types/react": "^16.0.40",
"@types/react-dom": "^16.0.4",
"classnames": "^2.2.6",
"core-decorators": "^0.20.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"gh-pages": "^1.1.0",
"jest": "^22.4.2",
"jest-transform-stub": "^1.0.0",
"lodash": "^4.17.5",
"mobx": "^3.6.1",
"mobx-react": "^4.4.2",
"mobx-react-devtools": "^4.2.15",
"node-sass": "^4.7.2",
"parcel-bundler": "^1.6.2",
"postcss-modules": "^1.1.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"ts-jest": "^22.4.1",
"tslint": "^5.11.0",
"tslint-microsoft-contrib": "^5.2.1",
"typescript": "^3.1.6"
},
"jest": {
"transform": {
"\\.tsx?$": "ts-jest",
"\\.(css|scss)$": "<rootDir>jest/cssModulesTransform.js",
"\\.(png|jpg|svg)$": "jest-transform-stub"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"setupTestFrameworkScriptFile": "<rootDir>jest/setupTests.ts",
"testURL": "http://localhost"
}
}