-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "grasplogoanimation",
"version": "1.0.0",
"main": "js/graspintro.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"flow": "flow",
"build": "webpack",
"build:dev": "webpack --config webpack.config.dev.js",
"build:test": "webpack --config webpack.config.test.js",
"build:prod": "webpack --config webpack.config.prod.js",
"dev": "webpack-dev-server",
"webpack-defaults": "webpack-defaults"
},
"author": "kiran batchu",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.12.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"flow-bin": "^0.61.0",
"flow-remove-types": "^1.2.3",
"raw-loader": "^0.5.1",
"webpack": "^3.12.0",
"webpack-bundle-analyzer": "^2.9.1",
"webpack-merge": "^4.1.1"
},
"dependencies": {
"babel-polyfill": "^6.26.0"
},
"babel": {
"presets": [
"env"
]
},
"description": ""
}