-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.95 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
{
"name": "fanduel-test",
"version": "0.0.1",
"description": "FanDuel - Test",
"main": "next",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"test": "jest --config=jest.config.json --watchAll --env=jsdom",
"dev": "next dev",
"build": "next build",
"export": "next build && next export",
"start": "next start",
"clean-babel-cache": "rm -Rf ./node_modules/.cache/babel-loader/*",
"lint": "npm run lint:js",
"lint:withfix": "npm run lint:js -- --fix",
"lint:js": "npm run lint:eslint -- . ",
"lint:eslint": "eslint --ignore-path .eslintignore",
"precommit": "lint-staged"
},
"lint-staged": {
"**/*.js": "eslint --ignore-path .eslintignore",
"**/*.scss": "stylelint */**.scss --fix"
},
"author": "Paul Buonaccorsi",
"eslintConfig": {
"extends": "wild"
},
"nodeMonConfig": {
"verbose": false,
"ext": "js json"
},
"dependencies": {
"gsap": "^2.1.3",
"isomorphic-unfetch": "^3.0.0",
"next": "^9.0.2",
"normalize.css": "^8.0.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"styled-jsx": "^3.2.1"
},
"devDependencies": {
"@zeit/next-sass": "^1.0.1",
"address": "^1.1.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-env": "^1.7.0",
"babel-preset-react-app": "^9.0.2",
"babel-preset-stage-0": "^6.24.1",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.0",
"eslint": "^6.1.0",
"eslint-config-wild": "^0.2.8",
"http-status": "^1.3.2",
"husky": "^3.0.2",
"jest": "^24.9.0",
"jest-transform-stub": "^2.0.0",
"lint-staged": "^9.2.1",
"next-transpile-modules": "^2.3.1",
"node-sass": "^4.12.0",
"qrcode-terminal": "^0.12.0",
"sass-loader": "^7.1.0",
"sass-resources-loader": "^2.0.1",
"styled-jsx-plugin-sass": "^1.0.0",
"stylelint": "^10.1.0",
"stylelint-config-wild": "^1.1.2",
"webpack-glsl-loader": "^1.0.1",
"whatwg-fetch": "^3.0.0"
}
}