forked from austinabell/near-crossword
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.6 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": "near-crossword",
"version": "0.1.0",
"dependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"crossword-layout-generator": "^0.1.1",
"env-cmd": "^10.1.0",
"framer-motion": "^5.2.1",
"near-api-js": "^0.42.0",
"near-cli": "^2.1.1",
"near-seed-phrase": "github:near/near-seed-phrase",
"react": "^16.13.1",
"react-crossword": "mikedotexe/react-crossword#with-dist",
"react-dom": "^16.13.1",
"react-fullpage-custom-loader": "^0.1.6",
"react-scripts": "4.0.3",
"styled-components": "^5.3.3",
"web-vitals": "^1.0.1"
},
"scripts": {
"start": "parcel src/index.html",
"build:contract": "cd contract && cargo build --target wasm32-unknown-unknown --release",
"build:web": "parcel build ./src/index.html --public-url ./ --no-minify",
"dev": "rm -rf neardev && npm run dev-deploy && npm run dev-start",
"dev-start": "env-cmd -f ./neardev/dev-account.env npm start",
"dev-deploy": "near dev-deploy contract/res/crossword.wasm",
"postdev-deploy": "env-cmd -f ./neardev/dev-account.env node new-puzzle.js",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"parcel-bundler": "^1.12.5"
}
}