-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.79 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": "ship-classifier",
"description": "Zbliża się lekcja WOSu, a prasówki brak? Nie ma problemu - Prasówka Generator wyszuka dla ciebie interesujące wiadomości i pomoże w utworzeniu tej bezsensownej wypowiedzi!",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "xo && stylelint 'pages/**/*.js'"
},
"dependencies": {
"core-js": "3.4.2",
"ml5": "^0.4.3",
"modern-normalize": "^0.5.0",
"next": "9.1.4",
"next-fonts": "^0.19.0",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-dropzone": "^10.2.1",
"styled-components": "^5.0.0-beta.11"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@zeit/next-css": "^1.0.1",
"babel-eslint": "^10.0.3",
"babel-plugin-styled-components": "^1.10.6",
"css-loader": "^3.2.0",
"eslint-config-xo-react": "^0.20.0",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.3.0",
"next-offline": "^4.0.6",
"stylelint": "^12.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-config-xo": "^0.15.0",
"stylelint-processor-styled-components": "^1.9.0",
"xo": "^0.25.3"
},
"xo": {
"nodeVersion": ">=10",
"parser": "babel-eslint",
"envs": [
"node",
"browser"
],
"extends": "xo-react",
"settings": {
"react": {
"version": "16.11"
}
},
"rules": {
"import/no-unassigned-import": "off",
"import/no-unresolved": "off",
"react/jsx-child-element-spacing": "off"
}
}
}