-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·84 lines (84 loc) · 2.54 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
{
"name": "romanesco",
"version": "0.1.0",
"description": "Generative art framework",
"main": "src/index.js",
"homepage": "https://risq.github.io/romanesco/",
"scripts": {
"start": "node server",
"dev": "webpack-dev-server -d --config ./config/editor/webpack.config.dev.js",
"build-editor": "NODE_ENV=production webpack --config ./config/editor/webpack.config.release.js",
"build-editor-pages": "NODE_ENV=production webpack --config ./config/editor/webpack.config.release-pages.js",
"lint": "eslint src config examples",
"lint-fix": "eslint src config examples --fix",
"test": "echo \"tests: todo !\"",
"precommit": "lint-staged",
"predeploy": "npm run build-editor-pages",
"deploy": "gh-pages -d build/editor-release-pages"
},
"lint-staged": {
"*.js": [
"eslint"
]
},
"repository": {
"type": "git",
"url": "[email protected]:risq/romanesco.git"
},
"author": "Valentin LEDRAPIER <[email protected]>",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^8.5.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^0.1.19",
"compression-webpack-plugin": "^1.1.11",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.4",
"directory-tree": "^2.1.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.12.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"gh-pages": "^1.2.0",
"hard-source-webpack-plugin": "^0.6.9",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"lint-staged": "^7.1.2",
"mini-css-extract-plugin": "^0.4.0",
"monaco-editor-webpack-plugin": "^1.2.0",
"node-sass": "^4.9.0",
"postcss-loader": "^2.1.5",
"raw-loader": "^0.5.1",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.4",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4",
"webpack-glsl-loader": "^1.0.1",
"webpack-merge": "^4.1.2"
},
"dependencies": {
"chroma-js": "^1.3.7",
"framebus": "^3.0.1",
"seedrandom": "^2.4.3",
"three": "^0.93.0",
"three-orbit-controls": "^82.1.0"
},
"peerDependencies": {
"three": "0.x"
},
"optionalDependencies": {
"babel-standalone": "^6.26.0",
"bulma": "^0.7.1",
"event-emitter": "^0.3.5",
"lodash": "^4.17.10",
"monaco-editor": "^0.13.1",
"navigo": "^7.1.2",
"prettier": "^1.13.4",
"store": "^2.0.12"
}
}