-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.28 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
{
"name": "artflow",
"version": "1.0.0",
"description": "3D drawing software",
"main": "index.js",
"scripts": {
"build": "npm run lint && webpack --progress --config webpack.config.js",
"build-dev": "webpack --progress --config webpack.config.js",
"dev": "webpack-dev-server --hot --inline",
"beautify": "find src -name '*.js' | xargs js-beautify --replace --config .jsbeautifyrc",
"lint": "eslint src"
},
"repository": "git+https://github.com/DavidPeicho/artflow.git",
"contributors": [
"Aurelien Leandri <aurelien.leandri@gmail.com@gmail.com>",
"Chady Dimachkie <chady.dimachkie@epita.fr>",
"Sarasvati Moutoucomarapoulé <sarasvati.moutoucomarapoule@epita.fr>"
],
"author": "David Peicho <david.peicho@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/DavidPeicho/artflow/issues"
},
"homepage": "https://github.com/DavidPeicho/artflow#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"dotenv": "^4.0.0",
"eslint": "^3.19.0",
"eslint-loader": "^1.9.0",
"js-beautify": "^1.7.5",
"path": "^0.12.7",
"three": "^0.88.0",
"webpack": "^2.7.0",
"webpack-dev-server": "^2.9.7"
},
"dependencies": {
"vr-ui": "0.0.10"
}
}