forked from xibyte/jsketcher
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.56 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
{
"name": "jsketcher",
"version": "0.1.0",
"description": "JS.Sketcher is a parametric 2D and 3D CAD modeler written in pure javascript",
"scripts": {
"start": "webpack-dev-server --config webpack.config.dev.js --content-base web/ --port 3000",
"pack": "webpack --config webpack.config.js --progress --profile --colors",
"build": "grunt",
"lint": "eslint web/app -c ./build/.eslintrc.json --ignore-path ./build/.eslintignore"
},
"repository": {
"type": "git",
"url": "https://github.com/xibyte/jsketcher.git"
},
"keywords": [
"parametric",
"cad"
],
"author": "Val Erastov <[email protected]> (http://github.com/xibyte)",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/xibyte/jsketcher/issues"
},
"homepage": "https://github.com/xibyte/jsketcher",
"devDependencies": {
"babel-cli": "6.14.0",
"babel-core": "6.14.0",
"babel-eslint": "6.1.2",
"babel-loader": "6.2.5",
"babel-preset-es2015": "6.14.0",
"css-loader": "0.24.0",
"less-loader": "2.2.3",
"eslint": "3.2.0",
"eslint-config-airbnb-base": "5.0.1",
"eslint-plugin-babel": "3.2.0",
"eslint-plugin-import": "1.12.0",
"style-loader": "0.13.1",
"webpack": "1.13.2",
"webpack-dev-server": "1.15.0",
"grunt": "1.0.1",
"grunt-contrib-copy": "1.0.0"
},
"dependencies": {
"sprintf": "0.1.5",
"diff-match-patch": "1.0.0",
"numeric": "1.2.6",
"jwerty": "0.3.2",
"handlebars": "4.0.6",
"handlebars-loader": "1.4.0",
"jquery": "2.1.0",
"less": "2.7.1",
"libtess": "1.2.2"
}
}