-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.22 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.22 KB
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
{
"name": "FullStackBoiler",
"version": "1.0.0",
"description": "Express React boilerplate project that can be used during club hackathons to speed up development",
"main": "server.js",
"repository": {
"url": "https://github.com/aztec-developers/FullStackBoiler.git",
"type": "git"
},
"author": "myamout <myamout>",
"license": "MIT",
"scripts": {
"server": "babel-node --presets es2015,stage-2 server.js",
"build": "webpack"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.28.7",
"eslint": "^4.6.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.3.0",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"webpack": "^3.5.6"
},
"dependencies": {
"cors": "^2.8.4",
"express": "^4.15.4",
"helmet": "^3.8.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"wingcss": "^1.0.0-beta"
}
}