-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 2.46 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
{
"name": "sculptit",
"author": "Tharun Mathew Paul",
"version": "0.0.1",
"description": "Implementation of Bret Victor's Drawing Dynamic Visualizations in Javascript",
"repository": {
"type": "git",
"url": "http://github.com/tmpaul06/sculpt.git"
},
"scripts": {
"lint": "eslint --ext .js,.jsx src",
"prebuild": "rm -rf dist",
"build-docs": "export NODE_ENV=production && npm run prebuild && npm run lint && webpack --config webpack-docs.config.js --progress --colors --profile",
"start": "node server.js"
},
"devDependencies": {
"babel-cli": "6.23.0",
"babel-core": "6.23.1",
"babel-eslint": "7.1.1",
"babel-jest": "^20.0.3",
"babel-loader": "^6.3.2",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-module-resolver": "2.5.0",
"babel-plugin-transform-async-to-generator": "6.22.0",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-flow-strip-types": "6.22.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-polyfill": "6.23.0",
"babel-preset-env": "1.1.10",
"babel-preset-es2015": "6.22.0",
"babel-preset-es2016": "6.22.0",
"babel-preset-es2017": "6.22.0",
"babel-preset-react": "6.23.0",
"babel-preset-stage-0": "6.22.0",
"babel-register": "6.24.0",
"chai": "3.5.0",
"chai-as-promised": "5.3.0",
"chai-string": "1.2.0",
"css-loader": "0.26.1",
"eslint": "3.16.1",
"eslint-import-resolver-babel-module": "3.0.0",
"eslint-plugin-babel": "4.1.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-react": "6.10.0",
"eslint-watch": "3.0.0",
"file-loader": "0.9.0",
"html-webpack-plugin": "2.24.1",
"jest": "^20.0.4",
"json-loader": "0.5.4",
"less": "2.7.1",
"less-loader": "2.2.3",
"lesshat": "^4.0.1",
"mocha": "3.2.0",
"nodemon": "1.11.0",
"raw-loader": "^0.5.1",
"react-hot-loader": "^3.0.0-beta.6",
"react-test-renderer": "15.4.2",
"regenerator": "0.9.5",
"sinon": "1.17.6",
"style-loader": "0.12.3",
"uglifyjs-webpack-plugin": "^1.0.1",
"url-loader": "0.5.7",
"webpack": "1.14.0",
"webpack-dev-server": "1.16.2",
"webpack-fail-plugin": "^1.0.5"
},
"dependencies": {
"clone": "^2.1.1",
"deepmerge": "^2.0.1",
"memoizee": "^0.4.11",
"react": "^15.4.2",
"react-color": "^2.13.8",
"react-dom": "^15.4.2",
"react-router": "3.0.0",
"svg-intersections": "^0.3.1",
"transformation-matrix-js": "^2.7.1"
}
}