-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.36 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
{
"name": "@socialgouv/clone-moi-sur-github",
"description": "Un bandeau React clone-moi-sur-github",
"version": "1.0.0",
"main": "dist/index.js",
"license": "Apache-2.0",
"files": [
"README.md",
"dist"
],
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"@socialgouv/eslint-config-react": "^1.100.0",
"babel-jest": "^29.0.0",
"eslint-plugin-jest": "^28.0.0",
"gh-pages": "^6.0.0",
"jest": "^29.0.0",
"parcel-bundler": "^1.12",
"prettier": "^3.0.0",
"react-test-renderer": "^18.0.0"
},
"dependencies": {
"prop-types": "^15.7.2",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"jest": {
"moduleNameMapper": {
"\\.css$": "<rootDir>/empty.js"
}
},
"scripts": {
"test": "jest",
"clean": "rm -rf ./dist",
"clean:demo": "rm -rf ./example/dist",
"start": "parcel watch ./src/index.js --out-dir ./dist",
"start:demo": "parcel ./example/src/index.html --out-dir ./example/dist",
"build": "parcel build ./src/index.js --global minimum-parcel-lib",
"build:demo": "parcel build ./example/src/index.html --out-dir ./example/dist --public-url ./",
"deploy": "gh-pages -d ./example/dist -r https://gitlab-ci-token:[email protected]/SocialGouv/clone-moi-sur-github.git"
}
}