-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.67 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
{
"name": "east",
"version": "0.4.0",
"description": "east (edit AST) aims to be a code editor, that works on an AST instead of textual code. The first AST will be an ECMAScript compatible AST.",
"main": "./out/static/js/main.js",
"scripts": {
"test": "jest",
"build": "rimraf ./out & webpack --config ./build-scripts/webpack.build.config.js",
"start": "run-p start:*",
"start:main": "electron .",
"start:renderer": "webpack-dev-server --config ./build-scripts/webpack.dev.renderer.config.js",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"keywords": [
"ast",
"editor",
"ecmascript"
],
"author": "Sven Busse",
"license": "MIT",
"dependencies": {
"@types/classnames": "^2.2.3",
"@types/react-custom-scrollbars": "^4.0.3",
"@types/shallowequal": "^0.2.1",
"classnames": "^2.2.5",
"esprima": "^4.0.0",
"lodash": "^4.17.11",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^16.2.1",
"react-redux": "^5.0.7",
"react-simple-contenteditable": "0.0.3",
"redux": "^3.7.2",
"shallowequal": "^1.0.2",
"uid": "0.0.2",
"snyk": "^1.191.0"
},
"devDependencies": {
"@types/electron-devtools-installer": "^2.0.2",
"@types/esprima": "^4.0.1",
"@types/jest": "^23.3.1",
"@types/lodash": "^4.14.104",
"@types/prop-types": "^15.5.2",
"@types/react": "^16.0.40",
"@types/react-dom": "^16.0.4",
"@types/react-hot-loader": "^3.0.6",
"@types/react-redux": "^5.0.15",
"css-loader": "^0.28.10",
"electron": "^1.8.3",
"electron-devtools-installer": "^2.2.3",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.0.6",
"jest": "^23.5.0",
"node-sass": "^4.7.2",
"npm-run-all": "^4.1.2",
"postcss": "^6.0.19",
"postcss-loader": "^2.1.1",
"postcss-modules-extract-imports": "^1.1.0",
"postcss-modules-local-by-default": "^1.2.0",
"postcss-modules-scope": "^1.1.0",
"react-hot-loader": "^4.0.0",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"ts-jest": "^23.1.4",
"ts-loader": "^5.0.0",
"typescript": "^3.0.3",
"url-loader": "^1.0.1",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.11",
"webpack-dev-server": "^3.1.1",
"webpack-stats-plugin": "^0.2.1"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
"snyk": true
}