-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1006 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
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "L131",
"version": "0.0.0",
"description": "Compiler as a service.",
"author": "Art Compiler LLC",
"main": "index.js",
"scripts": {
"start": "node index.js",
"build": "./node_modules/babel-cli/bin/babel-node.js tools/build",
"flow": "flow; test $? -eq 0 -o $? -eq 2"
},
"dependencies": {
"body-parser": "^1.19.0",
"domready": "^1.0.8",
"express": "^4.17.1",
"json-diff": "^0.5.4"
},
"engines": {
"node": "latest"
},
"repository": {
"type": "git",
"url": "https://github.com/artcompiler/L131"
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-es2015-modules-amd": "^6.8.0",
"babel-preset-es2015": "^6.1.2",
"babel-preset-react": "^6.1.2",
"babelify": "^7.0.2",
"browserify": "^12.0.1",
"d3": "3.x",
"flow-bin": "^0.32.0",
"react": "0.14.5",
"react-dom": "0.14.5",
"uglify-js": "^2.7.3"
}
}