This repository was archived by the owner on Feb 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.46 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.46 KB
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
{
"name": "chartgl",
"version": "0.0.1",
"description": "ChartGL",
"main": "src/demo.js",
"scripts": {
"eslint": "eslint --ext js --ext jsx src",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "webpack-dev-server",
"build": "cross-env NODE_ENV=production webpack",
"deploy": "npm run build && cp preview.png dist && surge -p dist -d chartgl.zone"
},
"author": "Nick Matantsev <nick.matantsev@beamworks.io>",
"license": "ISC",
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^4.3.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-react": "^7.1.0",
"surge": "^0.19.0"
},
"dependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"cross-env": "^5.1.1",
"css-loader": "^0.28.11",
"file-loader": "^1.1.11",
"gl-matrix": "^2.4.0",
"html-webpack-plugin": "^2.30.1",
"nice-color-palettes": "^2.0.0",
"node-sass": "^4.9.0",
"onecolor": "^3.0.5",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-dynamics": "^0.6.0",
"react-icons": "^2.2.7",
"react-motion": "^0.5.2",
"regl": "^1.3.0",
"sass": "^1.6.1",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"url-loader": "^0.6.2",
"webfontloader": "^1.6.28",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.9.4"
}
}