-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.11 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
{
"name": "vault-checker",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:watch": "webpack -w & node-sass assets/stylesheets/style.scss -o public -w",
"start:dev": "npm run build:watch & nodemon app.js",
"build": "webpack & node-sass assets/stylesheets/style.scss -o public",
"start": "node app.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.16.1",
"boostrap": "^1.0.0",
"bootstrap": "^3.3.7",
"chalk": "^1.1.3",
"express": "^4.15.2",
"jquery": "^3.2.1",
"moment": "^2.18.1",
"morgan": "^1.8.1",
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"node-sass": "^4.5.2",
"nodemon": "^1.11.0",
"webpack": "^2.5.1"
}
}