-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.24 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
{
"name": "cursor-traveler",
"version": "1.0.0",
"description": "Cursor Traveler: Chrome Extension. Count how many moves make your mouse",
"scripts": {
"watch": "webpack --config webpack/webpack.dev.js --watch",
"build": "webpack --config webpack/webpack.prod.js",
"zip": "zip -r -X pedometer.zip dist",
"build:zip": "npm run build && npm run zip",
"test:unit": "jest -c jest.config.unit.js"
},
"author": "Dmytro Filipenko",
"repository": {
"type": "git",
"url": "https://github.com/dmfilipenko/cursor-traveler"
},
"dependencies": {
"ramda": "^0.25.0",
"rxjs": "6.3.1"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
"@types/chrome": "0.0.75",
"@types/jest": "^23.3.2",
"@types/node": "^10.11.3",
"@types/ramda": "^0.25.38",
"@types/rx": "^4.1.1",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"jest": "^23.6.0",
"style-loader": "^0.23.0",
"ts-jest": "23.1.4",
"ts-loader": "~5.0.0",
"typescript": "^3.1.1",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.17.3",
"webpack-bundle-analyzer": "^3.0.2",
"webpack-cli": "~3.1.0",
"webpack-merge": "^4.1.4"
}
}