-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.74 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "basic-board-game-editor",
"version": "1.4.1",
"description": "a basic editor for board games",
"scripts": {
"dev": "node node_modules/.bin/webpack-dev-server --host 0.0.0.0",
"build": "node node_modules/.bin/webpack --config webpack.config.dist.js",
"buildCompiler": "echo-cli 'if you are on windows then SED is NOT working... SED is used to remove the last 12 lines from the file cliLangCompiler.js and then we insert a } again. this is because in the browser the node stuff is not defined' && node node_modules/.bin/jison simulation/compiler/langCompiler.jison -o simulation/compiler/cliLangCompiler.js && sed -e :a -e '$d;N;2,12ba' -e 'P;D' simulation/compiler/cliLangCompiler.js > simulation/compiler/langCompiler.js && echo-cli '}' >> simulation/compiler/langCompiler.js && node node_modules/.bin/tsc -p simulation/tsconfig.json && echo-cli 'the compiler is now at simulation/compiler/langCompiler.js'",
"buildCompilerDist": "node node_modules/.bin/webpack --config webpack.interpreter.config.dist.js",
"test": "node_modules/.bin/jest"
},
"author": "janis daehne",
"license": "MIT",
"dependencies": {
"@types/ace": "0.0.39",
"@types/bezier-js": "0.0.7",
"@types/easeljs": "1.0.0",
"@types/file-saver": "0.0.1",
"@types/highlight.js": "9.12.3",
"@types/lodash": "4.14.107",
"@types/markdown-it": "0.0.4",
"@types/mousetrap": "1.5.34",
"@types/qrcode": "1.3.0",
"@types/react": "15.6.1",
"@types/react-color": "2.13.5",
"@types/react-dom": "15.5.0",
"@types/react-redux": "4.4.40",
"@types/redux-actions": "1.2.7",
"@types/redux-logger": "3.0.0",
"@types/redux-promise-middleware": "0.0.8",
"@types/seedrandom": "2.4.27",
"@types/spark-md5": "3.0.0",
"ace-builds": "1.3.3",
"awesome-typescript-loader": "3.1.3",
"bezier-js": "2.2.5",
"clean-webpack-plugin": "0.1.19",
"copy-webpack-plugin": "4.5.1",
"css-loader": "0.28.7",
"easeljs": "^1.0.2",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "1.1.4",
"file-saver": "1.3.8",
"fsevents": "^2.0.7",
"github-markdown-css": "2.10.0",
"highlight.js": "10.4.1",
"html-webpack-plugin": "3.0.6",
"jison": "0.4.18",
"jison2json": "0.0.2",
"lodash": "^4.17.21",
"markdown-it": "^12.3.2",
"markdown-it-container": "^2.0.0",
"markdown-it-deflist": "^2.0.3",
"markdown-it-footnote": "^3.0.2",
"mousetrap": "1.5.3",
"postcss-import": "11.1.0",
"postcss-url": "7.3.1",
"qrcode": "1.3.2",
"raw-loader": "0.5.1",
"react": "15.5.4",
"react-color": "^2.17.3",
"react-dom": "15.5.4",
"react-redux": "5.0.5",
"react-redux-typescript": "2.3.0",
"redux": "3.6.0",
"redux-actions": "2.2.1",
"redux-logger": "3.0.6",
"redux-promise-middleware": "4.2.1",
"redux-thunk": "2.2.0",
"redux-undo": "1.0.0-beta9-9-7",
"seedrandom": "2.4.3",
"semantic-ui-offline": "2.4.x",
"semantic-ui-react": "0.81.1",
"spark-md5": "3.0.0",
"style-loader": "0.20.3",
"stylus": "0.54.5",
"stylus-loader": "3.0.2",
"sweetalert2": "7.20.6",
"tslib": "1.8.0",
"tslint": "5.6.0",
"tslint-immutable": "4.0.2",
"typescript": "3.2.2",
"url-loader": "1.0.1",
"webpack": "3.6.0",
"worker-loader": "1.1.1"
},
"devDependencies": {
"@types/jest": "22.2.3",
"echo-cli": "1.0.8",
"jest": "^24.8.0",
"ts-jest": "23.10.5",
"webpack-dev-server": "3.9.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"initForTests.ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}