-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.17 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
{
"name": "tabulator",
"version": "1.1.0",
"description": "Chrome extension for tab management",
"main": "index.js",
"scripts": {
"lint": "eslint src",
"clean": "rm -rf ./static/bundles",
"build": "npm run clean && NODE_ENV=production webpack --config webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1",
"package": "rm -f tabulator.zip && zip -r tabulator.zip static"
},
"author": "Ammar Khaku",
"license": "ISC",
"devDependencies": {
"babel-eslint": "^8.2.5",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-evernote": "^3.0.1",
"eslint-plugin-evernote": "^1.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-react": "^7.10.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"less": "^3.5.3",
"less-loader": "^4.1.0",
"webpack": "^4.15.1",
"webpack-cli": "^2.1.5"
},
"dependencies": {
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-sortable-hoc": "^0.8.3"
}
}