-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.44 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
43
44
45
46
47
48
49
50
{
"name": "Automata",
"version": "1.0.0",
"description": "JS boilerplate with some cool stuffs like React, Webpack and Babel.",
"main": "index.js",
"author": "Victor Feijo & Emmanuel Podesta",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server",
"build": "webpack",
"lint": "eslint --ext .jsx src/app --ext .js src/core/",
"jest": "jest",
"test": "yarn run lint && jest",
"server": "yarn run build && node ./server.js",
"repl": "babel-node --presets es2015",
"docs": "documentation build src/** -f html -o docs"
},
"dependencies": {
"antd": "^2.11.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"express": "^4.15.2",
"global": "^4.3.2",
"html-webpack-plugin": "^2.28.0",
"path": "^0.12.7",
"ramda": "^0.23.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"store": "^2.0.4",
"styled-components": "^1.4.4",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.23.1",
"babel-loader": "^6.4.0",
"babel-plugin-import": "^1.1.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"css-loader": "^0.26.4",
"documentation": "^4.0.0-rc.1",
"eslint": "^3.17.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^6.10.0",
"jest": "^19.0.2",
"style-loader": "^0.13.2",
"tern": "^0.21.0"
}
}