-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.02 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "atomic-generator-react",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=serve webpack-serve",
"build:atomic": "atomic-renderer --entry ./src/components/atomic --output ./dist/atomic --template ./src/templates/main.js",
"build:react:dev": "cross-env NODE_ENV=development webpack --mode development",
"build:react:prod": "cross-env NODE_ENV=production webpack --mode production",
"build": "yarn build:react:dev && yarn build:atomic",
"build:prod": "yarn build:react:prod && yarn build:atomic",
"flow": "flow",
"lint": "eslint src/**",
"test": "jest",
"jestinit": "jest --init"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^8.6.4",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.0",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^5.2.0",
"cssnano": "^4.1.10",
"del-cli": "^1.1.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"file-loader": "^1.1.11",
"flow-bin": "^0.77.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.1.0",
"node-sass": "^4.11.0",
"perfectionist": "^2.4.0",
"postcss-loader": "^2.1.5",
"sass-loader": "^7.0.3",
"webpack": "^4.14.0",
"webpack-cli": "^3.0.8",
"webpack-node-externals": "^1.7.2",
"webpack-serve": "^1.0.4"
},
"dependencies": {
"atomic-renderer": "./lib/atomic-renderer",
"express": "^4.16.3",
"pretty": "^2.0.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-styler": "./lib/react-styler"
}
}