forked from claus/react-dat-gui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.71 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
85
86
87
88
89
90
91
{
"name": "react-dat-gui",
"version": "1.0.2",
"description": "dat.GUI reimagined for React",
"main": "build/react-dat-gui.js",
"style": "build/react-dat-gui.css",
"contributors": [
{
"name": "Claus Wahlers",
"email": "[email protected]",
"url": "https://github.com/claus"
},
{
"name": "Rohan Deshpande",
"email": "[email protected]",
"url": "https://github.com/rohan-deshpande"
}
],
"license": "MIT",
"keywords": [
"react",
"dat.gui"
],
"repository": {
"type": "git",
"url": "[email protected]:claus/react-dat-gui.git"
},
"scripts": {
"build": "webpack --env build",
"dev": "npm run start --prefix dev",
"dev:migrate": "sh scripts/dev-migrate && npm run dev",
"dev:promote": "sh scripts/dev-promote && npm run build",
"example": "npm run start --prefix example",
"example:deploy": "npm run deploy --prefix example",
"test": "mocha --compilers js:babel-core/register --colors ./test/*.spec.js",
"test:watch": "mocha --compilers js:babel-core/register --colors -w ./test/*.spec.js",
"lint": "eslint src test build",
"lint:fix": "eslint --fix",
"toc": "markdown-toc README.md --no-firsth1 --maxdepth 3"
},
"dependencies": {
"classnames": "2.2.5",
"lodash.clamp": "^4.0.2",
"lodash.clonedeep": "^4.3.2",
"lodash.isfinite": "^3.3.1",
"lodash.isstring": "^4.0.1",
"lodash.isundefined": "^3.0.1",
"lodash.result": "^4.4.0",
"lodash.set": "^4.2.0",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-color": "^2.13.8",
"react-dom": "^16.0.0"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel": "6.5.2",
"babel-cli": "6.9.0",
"babel-core": "6.9.1",
"babel-eslint": "6.0.4",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-class-properties": "6.9.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "6.9.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-2": "6.5.0",
"browserify": "13.0.1",
"browserify-global-shim": "1.0.3",
"css-loader": "^0.28.7",
"cssnano": "^3.6.2",
"eslint": "^3.19.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"extract-text-webpack-plugin": "^2.1.2",
"markdown-toc": "^1.2.0",
"node-sass": "^4.0.0",
"postcss": "^5.0.21",
"postcss-cli": "^2.5.2",
"postcss-loader": "^0.9.1",
"precss": "^1.4.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.13.1",
"uglify-js": "2.6.2",
"watch": "0.18.0",
"webpack": "2.2.1",
"webpack-dev-server": "1.14.1"
}
}