-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.18 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
{
"name": "proc",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {}
},
"rules": {
"semi": 2
}
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"bezier-js": "^2.5.1",
"gl-matrix": "^3.2.1",
"tinycolor2": "^1.4.1"
},
"scripts": {
"start": "node_modules/.bin/webpack-dev-server -w --host 0.0.0.0",
"build": "node_modules/.bin/webpack"
},
"devDependencies": {
"@babel/core": "^7.8.6",
"@babel/preset-env": "^7.8.6",
"@babel/preset-react": "^7.8.3",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.1.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"file-loader": "^5.1.0",
"glsl-parser": "^2.0.1",
"html-webpack-plugin": "3.2.0",
"raw-loader": "4.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}