-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.37 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
{
"name": "@timmartin2/python-code-analyzer",
"version": "0.1.0",
"description": "React tools to show live simulation and analysis of Python code",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Tim Martin <[email protected]>",
"license": "MIT",
"private": false,
"files": [
"lib/**/*.js",
"lib/**/*.d.ts",
"lib/**/*.css"
],
"repository": {
"type": "git",
"url": "https://github.com/timmartin/python-code-analyzer.git"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@storybook/addon-actions": "^6.2.7",
"@storybook/addon-links": "^6.2.7",
"@storybook/addons": "^6.2.7",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "^6.2.7",
"@types/react": "^16.14.2",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"babel-loader": "^8.1.0",
"eslint": "^7.22.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"node-sass": "^4.14.1",
"regenerator-runtime": "^0.13.7",
"sass-loader": "^8.0.2",
"stylelint": "^13.8.0",
"stylelint-config-sass-guidelines": "^8.0.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.18.0",
"typescript": "^4.2.3",
"webpack": "^4.44.2"
},
"scripts": {
"build-ts": "tsc",
"build-scss": "node-sass --output-style compressed -o lib src/*.scss",
"build": "npm run build-ts && npm run build-scss",
"lint": "npm run lint-ts && npm run lint-scss",
"lint-ts": "eslint src/**/*.ts src/**/*.tsx",
"lint-scss": "stylelint src/**/*.scss",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@emotion/react": "^11.0.0",
"@emotion/styled": "^11.*",
"@projectstorm/react-diagrams": "^6.4.2",
"@timmartin2/skulpt": "^1.3.0",
"closest": "^0.0.1",
"dagre": "^0.8.5",
"lodash": "^4.17.20",
"ml-matrix": "^6.5.3",
"pathfinding": "^0.4.18",
"paths-js": "^0.4.11",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"resize-observer-polyfill": "^1.5.1",
"use-callback-ref": "^1.2.5",
"use-sidecar": "^1.0.4"
},
"keywords": [
"python",
"teaching",
"react-component"
]
}