-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.96 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.96 KB
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
{
"name": "sentisocial-frontend",
"version": "1.0.0",
"description": "Social media sentiment analysis and new aggregation",
"main": "src/index.js",
"scripts": {
"start": "NODE_ENV=production preact serve",
"build": "preact build --no-prerender",
"dev": "preact watch",
"test": "eslint -c config/eslint.yml src spec && sass-lint -c config/sasslint.yml -v && jest -c config/jest.json --coverage --rootDir .",
"coveralls": "coveralls < coverage/lcov.info",
"lint": "eslint -c config/eslint.yml --fix src spec && sass-lint -c config/sasslint.yml -v"
},
"author": "SentiSocial Contributors",
"license": "MIT",
"dependencies": {
"chart.js": "^2.7.1",
"preact": "^8.2.7",
"preact-compat": "^3.17.0",
"preact-redux": "^2.0.3",
"preact-router": "^2.6.0",
"react-chartjs-2": "^2.6.4",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-transform-node-env-inline": "^0.2.0",
"babel-preset-env": "^1.6.1",
"babel-preset-preact": "^1.1.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^3.5.0",
"coveralls": "^2.13.1",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jasmine": "^2.9.1",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-standard": "^3.0.1",
"if-env": "^1.0.0",
"jest": "^22.0.5",
"node-sass": "^4.7.2",
"postcss": "^6.0.16",
"preact-cli": "^2.1.0",
"preact-jsx-chai": "^2.2.1",
"sass-lint": "^1.12.1",
"sass-loader": "^6.0.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sentisocial/frontend.git"
},
"bugs": {
"url": "https://github.com/sentisocial/frontend/issues"
},
"homepage": "https://github.com/sentisocial/frontend/issues"
}