-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
32 lines (32 loc) · 987 Bytes
/
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
{
"name": "flowsheetsv2",
"main": "build/main.js",
"engines": {
"node": ">=7.5.0"
},
"scripts": {
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"build": "flow && lessc src/style.less build/style.css && babel src/ --out-dir build/ && cp src/index.html build/ && cp src/interpreter.py build/",
"run": "flow && lessc src/style.less build/style.css && babel src/ --out-dir build/ && cp src/index.html build/ && cp src/interpreter.py build/ && electron .",
"update": "git pull && npm install"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"codemirror": "^5.28.0",
"diff": "^3.3.0",
"electron": "^1.7.6",
"filbert": "^0.1.20",
"flow-bin": "^0.38.0",
"jquery": "^3.2.1",
"less": "^2.7.2",
"ps-node": "^0.1.6",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"underscore": "^1.8.3"
},
"dependencies": {
"canvas": "^1.6.9",
"window": "^4.2.2"
}
}