-
Notifications
You must be signed in to change notification settings - Fork 19
/
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": "calculator-starter",
"version": "0.0.1",
"description": "In-class practice. Using webpack, babel, react",
"scripts": {
"test": "jest --coverage",
"lint": "eslint src",
"build": "webpack",
"build:watch": "npm run build -- --watch",
"start": "serve ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/web-seminar/calculator-starter.git"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"css-loader": "^0.25.0",
"enzyme": "^2.5.1",
"eslint": "^3.9.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.5.0",
"jest-cli": "^16.0.2",
"react-addons-test-utils": "^15.3.2",
"style-loader": "^0.13.1",
"webpack": "^1.13.3"
},
"dependencies": {
"react": "^15.3.2",
"react-dom": "^15.3.2",
"serve": "^1.4.0"
}
}