-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.86 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
{
"name": "airplaneseats",
"version": "1.0.0",
"description": "Algorithim excerise for seating families of 4 in an airplane",
"main": "index.js",
"author": "Andres Zapata <me@azapata.io>",
"license": "MIT",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint . --ext .js,.jsx",
"lint:fix": "eslint . --fix --ext .js,.jsx",
"dev": "next",
"build": "next build",
"start": "next start"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-destructuring": "^7.8.8",
"@babel/plugin-transform-regenerator": "^7.8.7",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"babel-eslint": "^10.1.0",
"babel-plugin-dynamic-import-node": "^2.3.0",
"babel-plugin-import": "^1.13.0",
"babel-plugin-macros": "^2.8.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"jest": "^25.2.3",
"prettier": "^2.0.2"
},
"dependencies": {
"@babel/polyfill": "^7.8.7",
"@reduxjs/toolkit": "^1.3.2",
"antd": "^4.1.0",
"autoprefixer": "^9.7.5",
"babel-plugin-module-resolver": "^4.0.0",
"chroma-js": "^2.1.0",
"date-fns": "^2.11.1",
"eslint-config-airbnb": "^18.1.0",
"next": "9.3.3",
"postcss-import": "^12.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"tailwindcss": "^1.2.0"
}
}