-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 855 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
{
"name": "devcamp-skeleton-react-starter",
"version": "1.0.0",
"description": "Basic skeleton codebase for React applications.",
"main": "index.js",
"repository": "git@github.com:bottega-code-school/js-builder.git",
"scripts": {
"start": "webpack-dev-server --config webpack.config.js --watch"
},
"author": "Your Name Here",
"license": "MIT",
"devDependencies": {
"babel-core": "6.26.3",
"babel-loader": "7.1.4",
"babel-plugin-inline-json-import": "^0.3.1",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "6.24.1",
"jsdom": "11.10.0",
"webpack-cli": "2.1.2",
"webpack-dev-server": "^3.1.9"
},
"dependencies": {
"babel-preset-stage-1": "6.24.1",
"gsap": "^2.0.2",
"react": "16.3.2",
"react-dom": "16.3.2",
"styled-components": "^4.0.0",
"webpack": "4.7.0"
}
}