forked from abalone0204/Clairvoyance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.77 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
{
"name": "clairvoyance",
"version": "1.0.0",
"description": "You know, for comment",
"main": "index.js",
"scripts": {
"start": "node devServer.js",
"precompile": "npm run clean && webpack --config webpack.config.prod.js -p",
"dev:chrome": "npm run clean && webpack && npm run migrate:chrome",
"precompile:chrome": "npm run precompile && npm run migrate:chrome && zip -r clv.zip chromeExtension/*",
"migrate:chrome": "cp -R dist chromeExtension",
"migrate:firefox": "cp -R dist firefoxExtension",
"dev:firefox": "npm run clean && webpack && npm run migrate:firefox",
"precompile:firefox": "npm run precompile && npm run migrate:firefox && zip -r clv.xpi firefoxExtension/*",
"commit": "git-cz",
"clean": "rm -rf dist/*.js dist/*.js.map chromeExtension/dist/* firefoxExtension/dist/*",
"test": "cross-env NODE_ENV=test NODE_PATH=front-end/app mocha tests --recursive --compilers js:babel-register",
"test:watch": "npm test -- --watch"
},
"keywords": [
"job",
"react",
"chrome-extension"
],
"author": "abalone0204",
"license": "MIT",
"devDependencies": {
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-polyfill": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"cross-env": "^1.0.7",
"css-loader": "^0.23.1",
"cz-conventional-changelog": "^1.1.6",
"eslint": "^2.12.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.4.2",
"eslint-plugin-react": "^5.1.1",
"exports-loader": "^0.6.3",
"file-loader": "^0.8.5",
"imports-loader": "^0.6.5",
"jsdom": "^9.1.0",
"json-loader": "^0.5.4",
"mocha": "^2.5.1",
"postcss-calc": "^5.3.1",
"postcss-cssnext": "^2.5.2",
"postcss-loader": "^0.9.1",
"postcss-nested": "^1.0.0",
"postcss-simple-vars": "^2.0.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-stage-1": "^6.5.0",
"font-awesome": "^4.6.3",
"fontawesome": "^4.5.0",
"jquery": "^3.0.0",
"node-uuid": "^1.4.7",
"postcss-nested": "^1.0.0",
"react": "^15.1.0",
"react-css-modules": "^3.7.6",
"react-dom": "^15.1.0",
"react-modal": "^1.4.0",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-saga": "^0.10.4",
"underscore": "^1.8.3",
"whatwg-fetch": "^1.0.0"
}
}