-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.38 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
{
"name": "sinus-studio",
"version": "1.1.1",
"description": "Draws and animates a 3D spirograph-like curves",
"main": "webpack-dev-server --inline --devtool source-map --content-base src/client --port 8080",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --inline --hot --progress --o",
"start": "npm run dev",
"build": "cross-env NODE_ENV=production webpack -p --progress --profile --colors",
"testlint": "eslint src tests/**/*.js",
"test": "mocha --compilers js:babel-register --recursive ./**/*.desc.js",
"pushDemo": "npm run build;git add .;git commit -a;git subtree push --prefix build origin gh-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fingerpich/spiro3d.git"
},
"keywords": [
"control",
"spirograph",
"3d",
"animation",
"graphic"
],
"author": "mojtaba zarei",
"license": "ISC",
"bugs": {
"url": "https://github.com/fingerpich/spiro3d/issues"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel": "^6.5.2",
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-minimal": "^2.0.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"babel-runtime": "^6.9.2",
"chai": "^3.5.0",
"core-js": "^2.4.0",
"cross-env": "^1.0.8",
"css-loader": "^0.23.1",
"ejs-loader": "^0.3.0",
"esdoc": "^0.5.2",
"eslint": "^4.0.0",
"extract-text-webpack-plugin": "^1.0.1",
"favicons-webpack-plugin": "0.0.7",
"file-loader": "^0.8.5",
"html-webpack-plugin": "^2.19.0",
"json-loader": "^0.5.4",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"mkdirp": "^0.5.1",
"postcss-loader": "^0.9.1",
"raw-loader": "^0.5.1",
"source-map-loader": "^0.1.5",
"superstatic": "^4.0.2",
"sw-precache-webpack-plugin": "^0.9.0",
"uglifyjs-webpack-plugin": "^0.4.3",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"preact": "^8.4.2",
"preact-redux": "^1.2.0",
"redux": "^3.7.2",
"rxjs": "^6.4.0",
"three": "^0.84.0",
"three-orbit-controls": "^82.1.0"
},
"homepage": "https://github.com/fingerpich/spiro3d#readme"
}