This repository has been archived by the owner on Dec 20, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.79 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
{
"name": "graalit-client",
"version": "0.0.0",
"description": "Client for Graalit.",
"main": "index.js",
"scripts": {
"build": "webpack --mode production",
"format": "prettier --single-quote=true --trailing-comma=all --semi=false --write \"**/*.{js,jsx,css,scss}\"",
"format-watch": "onchange \"**/*.js\" \"**/*.jsx\" \"**/*.css\" \"**/*.scss\" -- prettier --single-quote=true --trailing-comma=all --semi=false --write {{changed}}",
"start": "concurrently --kill-others \"webpack-dev-server --mode development\" \"npm:*-watch\"",
"test": "jest",
"test-onchange": "onchange \"**/*.js\" \"**/*.jsx\" -- npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mfcochauxlaberge/graalit-client.git"
},
"author": "Marc-François Cochaux-Laberge",
"license": "ISC",
"bugs": {
"url": "https://github.com/mfcochauxlaberge/graalit-client/issues"
},
"homepage": "https://github.com/mfcochauxlaberge/graalit-client#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^23.4.2",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"concurrently": "^3.6.1",
"css-loader": "^1.0.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.5.0",
"node-sass": "^4.9.3",
"onchange": "^4.1.0",
"prettier": "^1.14.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.22.1",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
},
"dependencies": {
"build-url": "^1.1.2",
"date-fns": "^1.29.0",
"lodash": "^4.17.10",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1"
}
}