-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
102 lines (102 loc) · 2.81 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "quik",
"version": "0.0.0-development",
"description": "A quick way to prototype apps with React and Babel with zero-setup.",
"keywords": [
"react",
"babel",
"webpack",
"build",
"bundle",
"package",
"prototype",
"quik"
],
"main": "dist/index.js",
"scripts": {
"build": "babel -sd dist/ src/",
"clean": "del dist/",
"flow": "flow",
"lint": "eslint .",
"test": "jest",
"coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"prebuild": "yarn run clean",
"prepare": "yarn run build",
"precommit": "yarn run lint && yarn run flow"
},
"bin": {
"quik": "bin/quik.js"
},
"repository": {
"type": "git",
"url": "https://github.com/satya164/quik.git"
},
"author": "Satyajit Sahoo <[email protected]> (https://github.com/satya164/)",
"license": "MIT",
"dependencies": {
"autoprefixer": "^7.1.6",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-inline-elements": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "^6.26.0",
"chalk": "^2.3.0",
"cheerio": "^1.0.0-rc.2",
"command-exists": "^1.2.2",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^1.1.5",
"glob-expand": "^0.2.1",
"koa": "^2.3.0",
"koa-compose": "^4.0.0",
"koa-logger": "^3.1.0",
"koa-static": "^4.0.1",
"koa-webpack": "^1.0.0",
"lodash": "^4.17.4",
"memory-fs": "^0.4.1",
"ncp": "^2.0.0",
"opn": "^5.1.0",
"postcss-loader": "^2.0.8",
"resolve-url-loader": "^2.1.1",
"style-loader": "^0.19.0",
"url-loader": "^0.6.2",
"webpack": "^3.8.1",
"yargs": "^10.0.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"coveralls": "^3.0.0",
"cz-conventional-changelog": "^2.0.0",
"del": "^3.0.0",
"del-cli": "^1.1.0",
"eslint": "^4.9.0",
"eslint-config-satya164": "^1.0.1",
"eventsource": "^1.0.5",
"flow-bin": "^0.57.3",
"husky": "^0.14.3",
"jest": "^21.2.1",
"mkdirp": "^0.5.1",
"prettier": "^1.7.4",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"semantic-release": "^8.2.0"
},
"jest": {
"testRegex": "/__tests__/.*\\.(test|spec)\\.js$",
"testEnvironment": "node"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}