-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.71 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
{
"private": true,
"name": "moxemart",
"version": "1.0.0",
"description": "Example shopping cart application using Next.js and Redux",
"main": "pages/index.js",
"repository": "https://github.com/creativecoder/moxemart",
"author": "Grant Kinney",
"license": "MIT",
"scripts": {
"dev": "concurrently \"tsc --pretty --watch\" \"next\"",
"prebuild": "tsc",
"build": "next build",
"start": "next start -p $PORT",
"test": "jest --no-cache",
"test:watch": "jest --no-cache --watch",
"heroku-postbuild": "yarn build"
},
"dependencies": {
"@types/next": "^2.4.7",
"@types/next-redux-wrapper": "^1.3.6",
"@types/styled-jsx": "^2.2.1",
"@types/react": "^16.0.34",
"next": "^4.2.3",
"next-redux-wrapper": "^1.3.5",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-devtools-extension": "^2.13.2",
"typescript": "^2.6.2"
},
"devDependencies": {
"@types/enzyme": "^3.1.6",
"@types/enzyme-adapter-react-16": "^1.0.1",
"@types/jest": "^22.0.1",
"concurrently": "^3.5.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^22.0.6",
"jest-enzyme": "^4.0.2",
"raf": "^3.4.0",
"react-test-renderer": "^16.2.0",
"ts-jest": "^22.0.1",
"tslint": "^5.9.1"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json"],
"setupFiles": ["./jest.setup.ts"],
"setupTestFrameworkScriptFile": "./node_modules/jest-enzyme/lib/index.js",
"globals": {
"ts-jest": {
"useBabelrc": true
}
}
}
}