-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 876 Bytes
/
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
{
"name": "tryten",
"version": "0.0.1",
"eslintConfig": {
"env": {
"es6": true
}
},
"dependencies": {
"bootstrap": "^3.3.7",
"jquery": "^3.3.1",
"popper.js": "^1.12.9"
},
"devDependencies": {
"autoprefixer": "^8.1.0",
"babel-eslint": "^8.2.2",
"css-loader": "^0.28.10",
"eslint-plugin-react": "^7.7.0",
"eslint": "^4.18.2",
"expose-loader": "^0.7.4",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"file-loader": "^1.1.11",
"postcss-loader": "^2.1.1",
"url-loader": "^1.0.1",
"webpack-bundle-tracker": "^0.2.1",
"webpack-cli": "2.0.9",
"webpack": "^4.0.1"
},
"scripts": {
"dev": "webpack --mode development --config ./webpack.config.js --progress",
"build": "webpack --mode production --config ./webpack.config.js --progress",
"heroku-postbuild": "npm run build"
}
}