-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.88 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
{
"name": "receipt-tracker",
"version": "0.1.0",
"private": true,
"dependencies": {
"@types/numeral": "0.0.25",
"@types/react-bootstrap": "^0.32.11",
"@types/react-redux": "^6.0.4",
"@types/reactstrap": "^6.0.1",
"@types/uuid": "^3.4.3",
"bootstrap": "^4.1.3",
"numeral": "^2.0.6",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-ga": "^2.5.3",
"react-redux": "^5.0.7",
"reactstrap": "^6.3.0",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/enzyme": "^3.1.12",
"@types/jest": "^23.3.0",
"anser": "^1.4.7",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.4.1",
"react-dev-utils": "git+https://github.com/jussikinnula/react-dev-utils.git",
"react-scripts-ts-cssmodules": "^0.9.1",
"react-test-renderer": "^16.4.1",
"redux-mock-store": "^1.5.3",
"stack-frame-mapper": "^0.4.0",
"stack-frame-parser": "^0.4.0",
"stack-frame-unmapper": "^0.4.0",
"tslint-lines-between-class-members": "^1.2.4",
"tslint-microsoft-contrib": "^5.1.0",
"tslint-react": "^3.6.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"jest": {
"setupFiles": [
"<rootDir>/src/test-shim.js",
"<rootDir>/src/test-setup.js"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx|js)$": "<rootDir>/src/test-preprocessor.js"
},
"testMatch": [
"**/__tests__/*.(ts|tsx|jsx|js)"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "identity-obj-proxy"
}
}
}