-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.68 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "frontend",
"version": "1.0.0",
"author": "Dirty Bits",
"license": "MIT",
"main": "index.js",
"scripts": {
"dev": "next",
"prestart": "next build",
"start": "next start -p $PORT",
"precyprun": "wait-on http://localhost:3000",
"precyprecord": "wait-on http://localhost:3000",
"cypen": "cypress open",
"cyprun": "cypress run",
"cyprecord": "cypress run --record",
"test": "jest --watch",
"quicktest": "jest --no-cache",
"ci": "jest --no-cache --coverage --ci",
"pretty": "prettier -l '**/*.ts{,x}'"
},
"jest": {
"coverageReporters": [
"html"
],
"setupFiles": [
"<rootDir>/jestconfig/jestSetup.ts"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.jest.json"
}
}
},
"dependencies": {
"@fortawesome/fontawesome": "^1.1.5",
"@fortawesome/fontawesome-free-solid": "^5.0.9",
"@fortawesome/react-fontawesome": "^0.0.19",
"@zeit/next-typescript": "^0.1.1",
"axios": "^0.18.0",
"axios-mock-adapter": "^1.15.0",
"cookie": "^0.3.1",
"global": "^4.3.2",
"js-cookie": "^2.2.0",
"localforage": "^1.7.1",
"next": "^6.0.3",
"node-sass": "^4.9.0",
"raven-js": "^3.24.2",
"react": "^16.3.2",
"react-bottom-scroll-listener": "^1.2.0",
"react-dom": "^16.3.2",
"react-ga": "^2.5.0",
"react-redux": "^5.0.7",
"react-spinners": "^0.3.2",
"react-tag-box": "^1.6.0",
"react-youtube": "^7.6.0",
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.2",
"redux-form": "^7.2.3",
"redux-persist": "^5.9.1",
"redux-thunk": "^2.2.0",
"semantic-ui-react": "^0.80.0",
"sleep-promise": "^6.0.0",
"styled-jsx-plugin-sass": "^0.2.3",
"wait-on": "^2.1.0"
},
"devDependencies": {
"@types/cookie": "^0.3.1",
"@types/enzyme": "^3.1.9",
"@types/enzyme-adapter-react-16": "^1.0.2",
"@types/jest": "^22.1.3",
"@types/js-cookie": "^2.1.0",
"@types/next": "^2.4.10",
"@types/next-redux-wrapper": "^1.3.7",
"@types/react": "^16.3.1",
"@types/react-dom": "^16.0.4",
"@types/react-redux": "^6.0.0",
"@types/redux-form": "^7.0.14",
"@types/redux-mock-store": "^0.0.13",
"@types/styled-jsx": "^2.2.3",
"cypress": "^3.0.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^22.4.2",
"prettier": "^1.12.1",
"react-addons-test-utils": "^15.6.2",
"redux-mock-store": "^1.5.1",
"ts-jest": "^22.4.5",
"typescript": "^2.8.3"
}
}