-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.06 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
{
"name": "identify-me-tracker",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"clean": "rm -rf dist",
"start:dev": "webpack-dev-server --env.dev --hot --inline",
"start:prod": "webpack-dev-server --env.prod",
"build:dev": "webpack --env.dev",
"prebuild": "npm run clean",
"build": "webpack --env.prod -p",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.5.0",
"eslint-config-airbnb-base": "^11.3.2",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"html-webpack-plugin": "^2.30.1",
"webpack": "^3.5.5",
"webpack-config-utils": "^2.3.0",
"webpack-dev-server": "^2.7.1"
},
"dependencies": {
"axios": "^0.16.2",
"es6-promise": "^4.1.1",
"js-cookie": "^2.1.4",
"object-path": "^0.11.4",
"stampit": "^3.1.3",
"uuid": "^3.1.0"
}
}