-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
96 lines (96 loc) · 3.44 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
{
"name": "kobra",
"version": "0.0.1",
"private": true,
"dependencies": {
"@apollo/client": "3.3.19",
"@blockly/block-plus-minus": "2.0.27",
"@emotion/cache": "11.4.0",
"@emotion/react": "11.4.0",
"@emotion/server": "11.4.0",
"@kobra-dev/better-react-spreadsheet": "^0.2.0",
"@kobra-dev/react-firebase-auth-hooks": "3.0.3",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^5.0.0-beta.5",
"@material-ui/lab": "^4.0.0-alpha.60",
"blockly": "5.20210325.1",
"comlink": "^4.3.1",
"firebase": "8.6.2",
"graphql": "15.5.0",
"intro.js-react": "^0.5.0",
"js-cookie": "2.2.1",
"kbar": "^0.1.0-beta.28",
"kobra.js": "0.1.6",
"next": "11.1.3",
"notistack": "^1.0.10",
"papaparse": "^5.3.1",
"plotly.js-cartesian-dist-min": "1.58.4",
"react": "^17.0.2",
"react-code-samples": "0.1.3",
"react-dom": "^17.0.2",
"react-dropzone": "11.3.2",
"react-markdown": "6.0.2",
"react-plotly.js": "2.5.1",
"react-simplemde-editor": "4.1.5",
"remark-gfm": "1.0.0",
"start-server-and-test": "^1.14.0"
},
"scripts": {
"lint": "next lint --fix",
"format": "prettier --write src --config ./.prettierrc",
"dev": "next dev -p 3000",
"build": "next build",
"start": "next start",
"gql-codegen": "graphql-codegen --config codegen.yml",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build",
"cy:install": "cypress install",
"cy:run": "cypress run --headless --browser chrome",
"cy:open": "cypress open --browser chrome",
"test": "npm run cy:run",
"test:e2e:ci": "start-server-and-test dev http://localhost:3000 cy:run",
"prepare": "husky install",
"type-check": "npx tsc --project tsconfig.json --pretty --noEmit",
"pretty-quick": "pretty-quick --staged"
},
"eslintConfig": {
"extends": "next"
},
"browserslist": {
"production": "supports async-functions and >0.2%, not dead, not op_mini all",
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@graphql-codegen/cli": "1.21.4",
"@graphql-codegen/introspection": "1.18.2",
"@graphql-codegen/typescript": "1.22.0",
"@graphql-codegen/typescript-operations": "1.17.16",
"@graphql-codegen/typescript-react-apollo": "2.2.4",
"@next/bundle-analyzer": "10.2.2",
"@types/js-cookie": "2.2.6",
"@types/node": "14.17.0",
"@types/papaparse": "^5.2.5",
"@types/plotly.js": "1.54.10",
"@types/react": "17.0.6",
"@types/react-dom": "17.0.5",
"@types/react-plotly.js": "2.2.4",
"autoprefixer": "10.2.5",
"cross-env": "7.0.3",
"cypress": "^7.7.0",
"eslint": "^7.32.0",
"eslint-config-next": "^11.1.4",
"husky": "^6.0.0",
"prettier": "2.3.0",
"pretty-quick": "^3.1.3",
"typescript": "^4.6.2"
},
"resolutions": {
"webpack": "^5.36.1"
},
"description": "Kobra is a visual programming language (like Scratch) for Machine Learning."
}